nixos-artwork: make imagemagick a native build input

This is only needed on the builder, no need to cross compile it.
This commit is contained in:
Matthew Bauer 2020-02-26 21:48:00 -05:00
parent 5ffd779348
commit d1e58be703
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ stdenv.mkDerivation {
sha256 = "0wp08b1gh2chs1xri43wziznyjcplx0clpsrb13wzyscv290ay5a";
};
makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
buildInputs = [ imagemagick ];
nativeBuildInputs = [ imagemagick ];
}