Skip to content

Commit

Permalink
Fix out target
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Jan 8, 2020
1 parent c05e7dd commit 6665dbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.3
0.2.4
11 changes: 4 additions & 7 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,14 @@ pkgs.stdenv.mkDerivation rec {
(pass.withExtensions (exts: [ exts.pass-otp ]))
];

outputs = [ "out" "bin" "doc" ];
outputs = [ "out" "doc" ];

installPhase = ''
install -dm755 "$bin"
install -m755 bin/naal "$bin"
install -dm755 "$out/bin"
install -m755 bin/naal "$_"
install -dm755 "$doc"
install -m444 docs/naal.pdf "$doc"
install -dm755 "$out/bin"
ln -sf "$bin/naal" "$_"
install -m444 docs/naal.pdf "$_"
'';

meta = with pkgs.stdenv.lib; {
Expand Down

0 comments on commit 6665dbf

Please sign in to comment.