From 8e359b2e215c959222832a9f9b9edd8951182d34 Mon Sep 17 00:00:00 2001
From: Joachim Fasting <joachifm@fastmail.fm>
Date: Fri, 18 Mar 2016 16:35:00 +0100
Subject: [PATCH] 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.
---
 pkgs/development/libraries/bobcat/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix
index f6f96c816b2b..7a8209d5046a 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; {