summaryrefslogtreecommitdiffstats
path: root/Zpkgs/krebs/dic.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-07-24 23:57:12 +0200
committermakefu <github@syntax-fehler.de>2015-07-24 23:57:12 +0200
commit784929d0015547f2a314651ac67f095aee16c6ca (patch)
tree7dd2fe60d733d8220d74d312a8ee3b5780e01d73 /Zpkgs/krebs/dic.nix
parent55b9e8b4d0fa2c3b982038cf783a2ccdbe36ff6e (diff)
parent3453edadf2ac2fb76e9e690655dd9f4981e7e9c1 (diff)
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'Zpkgs/krebs/dic.nix')
-rw-r--r--Zpkgs/krebs/dic.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/Zpkgs/krebs/dic.nix b/Zpkgs/krebs/dic.nix
new file mode 100644
index 0000000..571773d
--- /dev/null
+++ b/Zpkgs/krebs/dic.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchgit, coreutils, curl, gnused, gnugrep, ... }:
+
+stdenv.mkDerivation {
+ name = "dic";
+
+ src = fetchgit {
+ url = https://github.com/krebscode/painload;
+ rev = "35ccac73d563ad30d2851b9aeed4cfef69ff74e3";
+ sha256 = "1y1fs2p3xj2yrqpw0h5kd0f3c5p1y70xk1hjnw99sr33r67s9c35";
+ };
+
+ phases = [
+ "unpackPhase"
+ "installPhase"
+ ];
+
+ installPhase =
+ let
+ path = stdenv.lib.makeSearchPath "bin" [
+ coreutils
+ curl
+ gnused
+ gnugrep
+ ];
+ in
+ ''
+ mkdir -p $out/bin
+
+ sed \
+ 's,^main() {$,&\n PATH=${path}; export PATH,' \
+ < ./util/bin/dic \
+ > $out/bin/dic
+
+ chmod +x $out/bin/dic
+ '';
+}