nixpkgs/pkgs/development/libraries/libdivecomputer/default.nix
2020-04-10 17:54:53 +01:00

22 lines
627 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libdivecomputer";
version = "0.6.0";
src = fetchurl {
url = "https://www.libdivecomputer.org/releases/${pname}-${version}.tar.gz";
sha256 = "0nm1mcscpxb9dv4p0lidd6rf5xg4vmcbigj6zqxvgn7pwnvpbzm0";
};
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;
};
}