summary refs log tree commit diff
path: root/pkgs/development/tools/compile-daemon/default.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2017-03-15 18:17:32 +0100
committerProfpatsch <mail@profpatsch.de>2017-04-12 00:07:55 +0200
commit048114eb4f79f3e125dadee106b454e3d72ccdfc (patch)
tree92062ffb2f9d899f40f492aeaefcbf82e3bdcff4 /pkgs/development/tools/compile-daemon/default.nix
parent9b7b950832e6ae97c301e8328b797e8b39efb545 (diff)
downloadnixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar.gz
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar.bz2
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar.lz
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar.xz
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.tar.zst
nixpkgs-048114eb4f79f3e125dadee106b454e3d72ccdfc.zip
compile-daemon: init at 2013-03-08
Diffstat (limited to 'pkgs/development/tools/compile-daemon/default.nix')
-rw-r--r--pkgs/development/tools/compile-daemon/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/tools/compile-daemon/default.nix b/pkgs/development/tools/compile-daemon/default.nix
new file mode 100644
index 00000000000..bad35e2422b
--- /dev/null
+++ b/pkgs/development/tools/compile-daemon/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+  name = "compile-daemon-unstable-${version}";
+  version = "2017-03-08";
+  rev = "d447e567232bcb84cedd3b2be012c7127f31f469";
+
+  goPackagePath = "github.com/githubnemo/CompileDaemon";
+
+  src = fetchFromGitHub {
+    owner = "githubnemo";
+    repo = "CompileDaemon";
+    inherit rev;
+    sha256 = "0jfbipp3gd89n6d7gds1qvfkqvz80qdlqqhijxffh8z8ss0xinqc";
+  };
+
+  goDeps = ./deps.nix;
+
+  meta = with stdenv.lib; {
+    description = "Very simple compile daemon for Go";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ profpatsch ];
+    inherit (src.meta) homepage;
+  };
+}