mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 23:03:41 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, enableNLS ? false, libnatspec ? null, libiconv }:
|
|
|
|
assert enableNLS -> libnatspec != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "zip-3.0";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz"
|
|
"https://src.fedoraproject.org/repo/pkgs/zip/zip30.tar.gz/7b74551e63f8ee6aab6fbc86676c0d37/zip30.tar.gz"
|
|
];
|
|
sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h";
|
|
};
|
|
patchPhase = ''
|
|
substituteInPlace unix/Makefile --replace 'CC = cc' ""
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
makefile = "unix/Makefile";
|
|
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
|
|
installFlags = [
|
|
"prefix=${placeholder ''out''}"
|
|
"INSTALL=cp"
|
|
];
|
|
|
|
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
|
|
|
|
buildInputs = stdenv.lib.optional enableNLS libnatspec
|
|
++ stdenv.lib.optional stdenv.isCygwin libiconv;
|
|
|
|
meta = with lib; {
|
|
description = "Compressor/archiver for creating and modifying zipfiles";
|
|
homepage = "http://www.info-zip.org";
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|