aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad/default.nix
new file mode 100644
index 000000000000..c36d576cc8e2
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/graphics/gnuclad/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, lib, fetchurl, pkgconfig
+}:
+
+stdenv.mkDerivation rec {
+ pname = "gnuclad";
+ version = "0.2.4";
+
+ src = fetchurl {
+ url = "https://launchpad.net/gnuclad/trunk/${lib.versions.majorMinor version}/+download/${pname}-${version}.tar.gz";
+ sha256 = "0ka2kscpjff7gflsargv3r9fdaxhkf3nym9mfaln3pnq6q7fwdki";
+ };
+
+ NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
+
+ nativeBuildInputs = [ pkgconfig ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://launchpad.net/gnuclad";
+ 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";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ mog ];
+ platforms = platforms.linux;
+ };
+}