diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-18 14:28:15 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-18 14:28:15 +0200 |
commit | 1490b9cb5334b1b1704005884a6a4880ed51afc9 (patch) | |
tree | bb56adec63d07919d1d4baab2ca02beb27e3cbfe /nix/rolling-directory.nix | |
parent | d3900cc71c7a5b06a932d56ce25f694ce31397b0 (diff) | |
download | utils-1490b9cb5334b1b1704005884a6a4880ed51afc9.tar utils-1490b9cb5334b1b1704005884a6a4880ed51afc9.tar.gz utils-1490b9cb5334b1b1704005884a6a4880ed51afc9.tar.bz2 utils-1490b9cb5334b1b1704005884a6a4880ed51afc9.tar.xz utils-1490b9cb5334b1b1704005884a6a4880ed51afc9.zip |
rolling-directory
Diffstat (limited to 'nix/rolling-directory.nix')
-rw-r--r-- | nix/rolling-directory.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/nix/rolling-directory.nix b/nix/rolling-directory.nix new file mode 100644 index 0000000..bb5dd53 --- /dev/null +++ b/nix/rolling-directory.nix | |||
@@ -0,0 +1,25 @@ | |||
1 | { stdenv | ||
2 | , zsh, coreutils, findutils, gawk, inotify-tools | ||
3 | }: | ||
4 | |||
5 | stdenv.mkDerivation rec { | ||
6 | name = "rolling-directory-${version}"; | ||
7 | version = "0.2"; | ||
8 | src = ../rolling-directory; | ||
9 | |||
10 | phases = [ "buildPhase" "installPhase" ]; | ||
11 | |||
12 | inherit zsh coreutils findutils gawk; | ||
13 | inotify = inotify-tools; | ||
14 | |||
15 | buildPhase = '' | ||
16 | substituteAll $src rolling-directory | ||
17 | ''; | ||
18 | |||
19 | installPhase = '' | ||
20 | mkdir -p $out/bin | ||
21 | |||
22 | install -m 755 -t $out/bin \ | ||
23 | rolling-directory | ||
24 | ''; | ||
25 | } | ||