summaryrefslogtreecommitdiffstats
path: root/Zpkgs/tv/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
commitf338d3d4d15ff29b3048b4f89716a8aa1a19f21b (patch)
treebb803bdcc4d93141e16e94e417c69ca8b1b3c9f5 /Zpkgs/tv/dic.nix
parenta4d2509918c3ce1400071eb0ef2b5421023976ca (diff)
parent99527e88aec089b4fea496248cf03f738bfed257 (diff)
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'Zpkgs/tv/dic.nix')
-rw-r--r--Zpkgs/tv/dic.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/Zpkgs/tv/dic.nix b/Zpkgs/tv/dic.nix
deleted file mode 100644
index 571773d22..000000000
--- a/Zpkgs/tv/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
- '';
-}