summaryrefslogtreecommitdiffstats
path: root/Zpkgs/krebs/dic.nix
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-28 21:38:22 +0200
committertv <tv@shackspace.de>2015-07-28 21:38:22 +0200
commit06cb4d25ef40773e2cc516e50a9aeec6cbe1d0a8 (patch)
treee05d849f048473aa9c90dc81b09d3a30dbe28ccc /Zpkgs/krebs/dic.nix
parent060087fab989a2cf362928c471ac8fd9c4d95c1e (diff)
*/krebs -> krebs/*
Diffstat (limited to 'Zpkgs/krebs/dic.nix')
-rw-r--r--Zpkgs/krebs/dic.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/Zpkgs/krebs/dic.nix b/Zpkgs/krebs/dic.nix
deleted file mode 100644
index 571773d22..000000000
--- a/Zpkgs/krebs/dic.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ 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
- '';
-}