nixpkgs/pkgs/development/libraries/libdivecomputer/default.nix

22 lines
624 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libdivecomputer";
2021-05-12 05:10:10 +00:00
version = "0.7.0";
src = fetchurl {
url = "https://www.libdivecomputer.org/releases/${pname}-${version}.tar.gz";
2021-05-12 05:10:10 +00:00
sha256 = "sha256-gNnxlOokUCA535hZhILgr8aw4zPeeds0wpstaJNNJbk=";
};
enableParallelBuilding = true;
meta = with 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;
};
}