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
46 lines
793 B
Nix
46 lines
793 B
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, python3
|
|
, ninja
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bzip2-unstable";
|
|
version = "2020-08-11";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "federicomenaquintero";
|
|
repo = "bzip2";
|
|
rev = "15255b553e7c095fb7a26d4dc5819a11352ebba1";
|
|
sha256 = "sha256-BAyz35D62LWi47B/gNcCSKpdaECHBGSpt21vtnk3fKs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs install_links.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
python3
|
|
ninja
|
|
];
|
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
|
|
|
mesonFlags = [
|
|
"-Ddocs=disabled"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "High-quality data compression program";
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.all;
|
|
maintainers = [];
|
|
};
|
|
}
|