summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-03-11 20:12:12 +0000
committerGitHub <noreply@github.com>2018-03-11 20:12:12 +0000
commit9a68c569612f2a312059e473943c31f8937f00eb (patch)
tree957d6a25247a8190bd634e0a255664aecf300ccb /pkgs/applications/graphics
parent0edb8f7b4082644aa0ad2a1bcd6ca866d2492f74 (diff)
parent8e478f8fe194a6e1622f55a9d1d5fe5ce5166e79 (diff)
downloadnixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar.gz
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar.bz2
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar.lz
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar.xz
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.tar.zst
nixpkgs-9a68c569612f2a312059e473943c31f8937f00eb.zip
Merge pull request #34067 from mogorman/gnuclad
gnuclad: init at 0.2.4
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gnuclad/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/gnuclad/default.nix b/pkgs/applications/graphics/gnuclad/default.nix
new file mode 100644
index 00000000000..2b391710907
--- /dev/null
+++ b/pkgs/applications/graphics/gnuclad/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig
+}:
+
+stdenv.mkDerivation rec {
+  name = "gnuclad";
+  version = "0.2.4";
+
+  src = fetchurl {
+    url = "https://launchpad.net/gnuclad/trunk/0.2/+download/${name}-${version}.tar.gz";
+    sha256 = "0ka2kscpjff7gflsargv3r9fdaxhkf3nym9mfaln3pnq6q7fwdki";
+  };
+
+  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;
+  };
+}