summary refs log tree commit diff
path: root/pkgs/games/pingus
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-10-10 17:22:48 +0200
committerMichael Raskin <7c6f434c@mail.ru>2017-10-10 17:23:10 +0200
commitef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41 (patch)
tree733e084d2625b0d554b16dddcec0a96e44299448 /pkgs/games/pingus
parente71a6aabf8b4ef0e6575f225ac7e1a1013a328c7 (diff)
downloadnixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar.gz
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar.bz2
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar.lz
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar.xz
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.tar.zst
nixpkgs-ef291b52f3c4efa4da8b7c12c6d96e4ae0bcef41.zip
pingus, quirc: fix pkgconfig passing
Diffstat (limited to 'pkgs/games/pingus')
-rw-r--r--pkgs/games/pingus/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/games/pingus/default.nix b/pkgs/games/pingus/default.nix
index 8b8a6fed841..9704cb93e6b 100644
--- a/pkgs/games/pingus/default.nix
+++ b/pkgs/games/pingus/default.nix
@@ -1,8 +1,6 @@
 {stdenv, fetchurl, scons, SDL, SDL_image, boost, libpng, SDL_mixer, pkgconfig
 , mesa}:
 let
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [scons SDL SDL_image boost libpng SDL_mixer mesa];
   s = # Generated upstream information
   rec {
     baseName="pingus";
@@ -15,7 +13,8 @@ let
 in
 stdenv.mkDerivation rec {
   inherit (s) name version;
-  inherit buildInputs;
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [scons SDL SDL_image boost libpng SDL_mixer mesa];
   src = fetchurl {
     inherit (s) url sha256;
   };