nixpkgs/pkgs/applications/graphics/gnuclad/default.nix

25 lines
781 B
Nix
Raw Normal View History

2018-05-28 12:59:57 +00:00
{ stdenv, lib, fetchurl, pkgconfig
2018-01-20 03:35:45 +00:00
}:
stdenv.mkDerivation rec {
pname = "gnuclad";
2018-01-20 03:35:45 +00:00
version = "0.2.4";
src = fetchurl {
url = "https://launchpad.net/gnuclad/trunk/${lib.versions.majorMinor version}/+download/${pname}-${version}.tar.gz";
2018-01-20 03:35:45 +00:00
sha256 = "0ka2kscpjff7gflsargv3r9fdaxhkf3nym9mfaln3pnq6q7fwdki";
};
2019-01-17 11:29:17 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=catch-value" ];
2018-01-20 03:35:45 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
homepage = https://launchpad.net/gnuclad;
description = "gnuclad tries to help the environment by creating trees. It's primary use will be generating cladogram trees for the GNU/Linux distro timeline project.";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mog ];
platforms = platforms.linux;
};
}