1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4 pname = "libdivecomputer";
8 url = "https://www.libdivecomputer.org/releases/${pname}-${version}.tar.gz";
9 sha256 = "sha256-J17M55I2RO1YH6q53LTxpprSUbzrByHE5fhftjFheg4=";
12 enableParallelBuilding = true;
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;