diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-21 16:45:05 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-21 16:45:05 +0200 |
commit | 7fac6b5d1827b5d6713bfe9cdd9c15688d98621c (patch) | |
tree | 2cff0da66c8503859a5af359b019c5789daa9839 /custom | |
parent | 251cf8112ece793f4a994a0a5edad54f80cbd057 (diff) | |
download | nixos-7fac6b5d1827b5d6713bfe9cdd9c15688d98621c.tar nixos-7fac6b5d1827b5d6713bfe9cdd9c15688d98621c.tar.gz nixos-7fac6b5d1827b5d6713bfe9cdd9c15688d98621c.tar.bz2 nixos-7fac6b5d1827b5d6713bfe9cdd9c15688d98621c.tar.xz nixos-7fac6b5d1827b5d6713bfe9cdd9c15688d98621c.zip |
install instead of cp
Diffstat (limited to 'custom')
-rw-r--r-- | custom/notify-user.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/notify-user.nix b/custom/notify-user.nix index f7fbc7c0..d1716e05 100644 --- a/custom/notify-user.nix +++ b/custom/notify-user.nix | |||
@@ -24,6 +24,6 @@ stdenv.mkDerivation { | |||
24 | ''; | 24 | ''; |
25 | installPhase = '' | 25 | installPhase = '' |
26 | mkdir -p $out/bin | 26 | mkdir -p $out/bin |
27 | cp notify-${user} $out/bin | 27 | install notify-${user} $out/bin |
28 | ''; | 28 | ''; |
29 | } | 29 | } |