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