2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkg-config
|
2018-01-20 03:35:45 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnuclad";
|
2018-01-20 03:35:45 +00:00
|
|
|
version = "0.2.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2022-05-23 21:15:20 +01:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optional stdenv.cc.isGNU "-Wno-error=catch-value";
|
2019-01-17 11:29:17 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-01-20 03:35:45 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://launchpad.net/gnuclad";
|
2020-10-26 04:08:40 +00: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 03:35:45 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ mog ];
|
2022-05-23 21:15:20 +01:00
|
|
|
platforms = platforms.unix;
|
2018-01-20 03:35:45 +00:00
|
|
|
};
|
|
|
|
}
|