mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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,
|
|
stdenv,
|
|
fetchgit,
|
|
cmake,
|
|
linux-pam,
|
|
substituteAll,
|
|
enablePython ? false,
|
|
python ? null,
|
|
}:
|
|
|
|
assert enablePython -> python != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libpam-wrapper";
|
|
version = "1.1.5";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.samba.org/pam_wrapper.git";
|
|
rev = "pam_wrapper-${version}";
|
|
hash = "sha256-AtfkiCUvCxUfll6lOlbMyy5AhS5R2BGF1+ecC1VuwzM=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./python.patch;
|
|
siteDir = lib.optionalString enablePython python.sitePackages;
|
|
includeDir = lib.optionalString enablePython "include/${python.libPrefix}";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optionals enablePython [ python ];
|
|
|
|
# We must use linux-pam, using openpam will result in broken fprintd.
|
|
buildInputs = [ linux-pam ];
|
|
|
|
meta = with lib; {
|
|
description = "Wrapper for testing PAM modules";
|
|
homepage = "https://cwrap.org/pam_wrapper.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|