mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, stdenv
|
|
, testers
|
|
, validatePkgConfig
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "miniz";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "richgel999";
|
|
repo = "miniz";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-3J0bkr2Yk+MJXilUqOCHsWzuykySv5B1nepmucvA4hg=";
|
|
};
|
|
passthru.updateScript = nix-update-script {};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ cmake validatePkgConfig ];
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$out"/lib/pkgconfig/miniz.pc \
|
|
--replace-fail '=''${prefix}//' '=/' \
|
|
--replace-fail '=''${exec_prefix}//' '=/'
|
|
'';
|
|
|
|
passthru.tests.pkg-config = testers.hasPkgConfigModules {
|
|
package = finalAttrs.finalPackage;
|
|
versionCheck = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Single C source file zlib-replacement library";
|
|
homepage = "https://github.com/richgel999/miniz";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ astro ];
|
|
platforms = platforms.unix;
|
|
pkgConfigModules = [ "miniz" ];
|
|
};
|
|
})
|