1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libdivecomputer-${version}";
5 version = "0.5.0";
6
7 src = fetchurl {
8 url = "http://www.libdivecomputer.org/releases/${name}.tar.gz";
9 sha256 = "11n2qpqg4b2h7mqifp9qm5gm1aqwy7wj1j4j5ha0wdjf55zzy30y";
10 };
11
12 enableParallelBuilding = true;
13
14 meta = with stdenv.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 };
21}