Skip to content

Commit

Permalink
nix-plugins: Make cross-compilation friendly.
Browse files Browse the repository at this point in the history
Thanks, @dtzWill
  • Loading branch information
shlevy committed Feb 13, 2018
1 parent eef9d36 commit 6bc24a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/libraries/nix-plugins/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, nix, boehmgc, cmake, pkgconfig }:
{ stdenv, fetchFromGitHub, nix, cmake, pkgconfig }:
let version = "3.0.1"; in
stdenv.mkDerivation {
name = "nix-plugins-${version}";
Expand All @@ -10,7 +10,9 @@ stdenv.mkDerivation {
sha256 = "1pmk2m0kc6a3jqygm5cy1fl5gbcy0ghc2xs4ww0gh20walrys82r";
};

buildInputs = [ cmake pkgconfig nix ];
nativeBuildInputs = [ cmake pkgconfig ];

buildInputs = [ nix ];

meta = {
description = "Collection of miscellaneous plugins for the nix expression language";
Expand Down

0 comments on commit 6bc24a2

Please sign in to comment.