libdivecomputer: init at 0.5.0
Signed-off-by: Maximilian Güntner <code@klandest.in>
This commit is contained in:
parent
0c726497a2
commit
72b1ea861c
21
pkgs/development/libraries/libdivecomputer/default.nix
Normal file
21
pkgs/development/libraries/libdivecomputer/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libdivecomputer-${version}";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.libdivecomputer.org/releases/${name}.tar.gz";
|
||||||
|
sha256 = "11n2qpqg4b2h7mqifp9qm5gm1aqwy7wj1j4j5ha0wdjf55zzy30y";
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.libdivecomputer.org;
|
||||||
|
description = "A cross-platform and open source library for communication with dive computers from various manufacturers";
|
||||||
|
maintainers = [ maintainers.mguentner ];
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -7665,6 +7665,8 @@ in
|
|||||||
|
|
||||||
libdiscid = callPackage ../development/libraries/libdiscid { };
|
libdiscid = callPackage ../development/libraries/libdiscid { };
|
||||||
|
|
||||||
|
libdivecomputer = callPackage ../development/libraries/libdivecomputer { };
|
||||||
|
|
||||||
libdivsufsort = callPackage ../development/libraries/libdivsufsort { };
|
libdivsufsort = callPackage ../development/libraries/libdivsufsort { };
|
||||||
|
|
||||||
libdmtx = callPackage ../development/libraries/libdmtx { };
|
libdmtx = callPackage ../development/libraries/libdmtx { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user