Zpkgs tv: init dic
This commit is contained in:
parent
74497c357e
commit
ba0077cd69
@ -2,5 +2,6 @@
|
||||
|
||||
pkgs //
|
||||
{
|
||||
dic = pkgs.callPackage ./dic.nix {};
|
||||
much = pkgs.callPackage ./much.nix {};
|
||||
}
|
||||
|
36
Zpkgs/tv/dic.nix
Normal file
36
Zpkgs/tv/dic.nix
Normal file
@ -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
|
||||
'';
|
||||
}
|
Loading…
Reference in New Issue
Block a user