nixpkgs/pkgs/by-name/pl/please/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

54 lines
1.4 KiB
Nix

{ lib
, rustPlatform
, fetchFromGitLab
, installShellFiles
, pam
, nixosTests
}:
rustPlatform.buildRustPackage rec {
pname = "please";
version = "0.5.5";
src = fetchFromGitLab {
owner = "edneville";
repo = "please";
rev = "v${version}";
hash = "sha256-bQ91uCDA2HKuiBmHZ9QP4V6tM6c7hRvECqXzfC6EEnI=";
};
cargoHash = "sha256-PheqGFkXd5lQLMfrmH+TS0jfHdGPym/pTSh5Y2ZIHqw=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = [ pam ];
patches = [ ./nixos-specific.patch ];
postInstall = ''
installManPage man/*
'';
# Unit tests are broken on NixOS.
doCheck = false;
passthru.tests = { inherit (nixosTests) please; };
meta = with lib; {
description = "Polite regex-first sudo alternative";
longDescription = ''
Delegate accurate least privilege access with ease. Express easily with a
regex and expose only what is needed and nothing more. Or validate file
edits with pleaseedit.
Please is written with memory safe rust. Traditional C memory unsafety is
avoided, logic problems may exist but this codebase is relatively small.
'';
homepage = "https://www.usenix.org.uk/content/please.html";
changelog = "https://github.com/edneville/please/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ azahi ];
platforms = platforms.linux;
};
}