Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libdivecomputer / default.nix
blob8e37bd773cb3c9ebdb00baf822dc6ea5b3afe1c3
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libdivecomputer";
5   version = "0.8.0";
7   src = fetchurl {
8     url = "https://www.libdivecomputer.org/releases/${pname}-${version}.tar.gz";
9     sha256 = "sha256-J17M55I2RO1YH6q53LTxpprSUbzrByHE5fhftjFheg4=";
10   };
12   enableParallelBuilding = true;
14   meta = with lib; {
15     homepage = "http://www.libdivecomputer.org";
16     description = "A cross-platform and open source library for communication with dive computers from various manufacturers";
17     maintainers = [ maintainers.mguentner ];
18     license = licenses.lgpl21;
19     platforms = platforms.all;
20   };