summary refs log tree commit diff
path: root/pkgs/development/libraries/bobcat/default.nix
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-03-18 16:35:00 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2016-03-18 18:22:27 +0100
commit8e359b2e215c959222832a9f9b9edd8951182d34 (patch)
tree54e7e10bbd20d57311380ae0fe02984d268079cf /pkgs/development/libraries/bobcat/default.nix
parent49dc7e2d61fab7f7b99939e7acdf3a27528b1165 (diff)
downloadnixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar.gz
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar.bz2
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar.lz
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar.xz
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.tar.zst
nixpkgs-8e359b2e215c959222832a9f9b9edd8951182d34.zip
bobcat: fix installation
Another hotfix for eae059b0b607e4c5a0a201466e3dc2c97cecc85e
(I kind of jumped the gun on this one ...)

The `build install` command takes a positional argument
indicating which components to install; without it, nothing
is installed and the build fails to create the store output.
Diffstat (limited to 'pkgs/development/libraries/bobcat/default.nix')
-rw-r--r--pkgs/development/libraries/bobcat/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix
index f6f96c816b2..7a8209d5046 100644
--- a/pkgs/development/libraries/bobcat/default.nix
+++ b/pkgs/development/libraries/bobcat/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   '';
 
   installPhase = ''
-    ./build install
+    ./build install x
   '';
 
   meta = with stdenv.lib; {