summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorYorick van Pelt <yorick@yorickvanpelt.nl>2018-07-17 17:28:13 +0200
committerYorick van Pelt <yorick@yorickvanpelt.nl>2018-07-17 17:28:13 +0200
commit9ba3b39e44705bc5f0638acb30a4c3077a96f7d9 (patch)
treeef877e92f43b316ca4903856a009757d983e95b0 /pkgs/development/tools
parent76e42081c859cf339e41af6577df8c4bbdb9c3de (diff)
downloadnixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar.gz
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar.bz2
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar.lz
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar.xz
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.tar.zst
nixlib-9ba3b39e44705bc5f0638acb30a4c3077a96f7d9.zip
gputils: init at 1.5.0-1
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/gputils/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/gputils/default.nix b/pkgs/development/tools/misc/gputils/default.nix
new file mode 100644
index 000000000000..dc736e2e89ce
--- /dev/null
+++ b/pkgs/development/tools/misc/gputils/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "1.5.0-1";
+  name = "gputils-${version}";
+  src = fetchurl {
+    url = "mirror://sourceforge/gputils/${name}.tar.bz2";
+    sha256 = "055v83fdgqljprapf7rmh8x66mr13fj0qypj49xba5spx0ca123g";
+  };
+  meta = with stdenv.lib; {
+    homepage = http://sdcc.sourceforge.net/;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.yorickvp ];
+  };
+}