about summary refs log tree commit diff
path: root/pkgs/tools/graphics/guff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2018-12-23 19:10:13 -0500
committerMario Rodas <marsam@users.noreply.github.com>2018-12-24 06:20:37 -0500
commitf994e5fe8d266b01bb851f75954e7c7bc62e7261 (patch)
tree8e2a30b8cf630648d6c925fafe218d751fff9175 /pkgs/tools/graphics/guff
parenta47c3b32abf7f0471c42d2759af7b47c89fb2d96 (diff)
guff: init at 0.1.0
Diffstat (limited to 'pkgs/tools/graphics/guff')
-rw-r--r--pkgs/tools/graphics/guff/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/guff/default.nix b/pkgs/tools/graphics/guff/default.nix
new file mode 100644
index 0000000000000..db218a812e69a
--- /dev/null
+++ b/pkgs/tools/graphics/guff/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "guff";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "silentbicycle";
+    repo = "guff";
+    rev = "v${version}";
+    sha256 = "0n8mc9j3044j4b3vgc94ryd2j9ik6g73fqja54yxfdfrks4ksyds";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  doCheck = true;
+
+  meta = with stdenv.lib;  {
+    description = "A plot device";
+    homepage = https://github.com/silentbicycle/guff;
+    license = licenses.isc;
+    maintainers = [ maintainers.marsam ];
+    platforms = platforms.all;
+  };
+}