summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2020-06-24 00:17:05 +0200
committerMatthieu Coudron <mattator@gmail.com>2020-06-24 00:18:13 +0200
commitdde159fd98f8f0352571a443a8cc8451c03a4c40 (patch)
treed8cedbbf87332e5f98c59911c028d5cfd622f612
parent4cdd64d9078181e8fcb6132909dc2835059a09bd (diff)
hstr: install manpage
-rw-r--r--pkgs/applications/misc/hstr/default.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/applications/misc/hstr/default.nix b/pkgs/applications/misc/hstr/default.nix
index b1e740fb7607..81f931b11f8e 100644
--- a/pkgs/applications/misc/hstr/default.nix
+++ b/pkgs/applications/misc/hstr/default.nix
@@ -15,15 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ readline ncurses gettext ];
- configurePhase = ''
- autoreconf -fvi
- ./configure
- '';
-
- installPhase = ''
- mkdir -p $out/bin/
- mv src/hstr $out/bin/
- '';
+ configureFlags = [ "--prefix=$(out)" ];
meta = {
homepage = "https://github.com/dvorka/hstr";