summary refs log tree commit diff
path: root/pkgs/development/libraries/libdivecomputer/default.nix
blob: 5598e6b2fa78db1c2d692cee33203242c9b57320 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}