mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
stow: support cross compilation (#322091)
* stow: support cross compilation Co-authored-by: Fabian Thomas <fabian@fabianthomas.de> * stow: remove unused perl input --------- Co-authored-by: Fabian Thomas <fabian@fabianthomas.de>
This commit is contained in:
parent
0302e0fb4b
commit
8057340b8a
|
@ -1,7 +1,6 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, perl
|
||||
, perlPackages
|
||||
}:
|
||||
|
||||
|
@ -14,6 +13,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
hash = "sha256-p7rGc9qiRs9U/7SKET6t0gSmFWMOdrU7X2TYGidbd7M=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perlPackages.perl ];
|
||||
buildInputs = with perlPackages; [ perl IOStringy TestOutput ];
|
||||
|
||||
doCheck = true;
|
||||
|
|
Loading…
Reference in a new issue