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
38 lines
1022 B
Nix
38 lines
1022 B
Nix
{ lib, stdenv, fetchurl, zlib, util-linux }:
|
|
|
|
let name = "pigz";
|
|
version = "2.4";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = name + "-" + version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.zlib.net/${name}/${name}-${version}.tar.gz";
|
|
sha256 = "0wsgw5vwl23jrnpsvd8v3xcp5k4waw5mk0164fynjhkv58i1dy54";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [zlib] ++ stdenv.lib.optional stdenv.isLinux util-linux;
|
|
|
|
makeFlags = [ "CC=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
doCheck = stdenv.isLinux;
|
|
checkTarget = "tests";
|
|
installPhase =
|
|
''
|
|
install -Dm755 pigz "$out/bin/pigz"
|
|
ln -s pigz "$out/bin/unpigz"
|
|
install -Dm755 pigz.1 "$out/share/man/man1/pigz.1"
|
|
ln -s pigz.1 "$out/share/man/man1/unpigz.1"
|
|
install -Dm755 pigz.pdf "$out/share/doc/pigz/pigz.pdf"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.zlib.net/pigz/";
|
|
description = "A parallel implementation of gzip for multi-core machines";
|
|
license = licenses.zlib;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|