lol

lzip: support windows cross

+2 -2
+2 -2
pkgs/tools/compression/lzip/default.nix
··· 4 4 name = "lzip-${version}"; 5 5 version = "1.20"; 6 6 7 - buildInputs = [ texinfo ]; 7 + nativeBuildInputs = [ texinfo ]; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://savannah/lzip/${name}.tar.gz"; ··· 27 27 homepage = http://www.nongnu.org/lzip/lzip.html; 28 28 description = "A lossless data compressor based on the LZMA algorithm"; 29 29 license = stdenv.lib.licenses.gpl3Plus; 30 - platforms = stdenv.lib.platforms.unix; 30 + platforms = stdenv.lib.platforms.all; 31 31 }; 32 32 }