nixpkgs/pkgs/by-name/bu/bullshit/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

45 lines
1.1 KiB
Nix

{ lib
, stdenvNoCC
, fetchFromGitHub
, gawk
, nix-update-script
}:
stdenvNoCC.mkDerivation {
pname = "bullshit";
version = "0-unstable-2018-05-28";
src = fetchFromGitHub {
owner = "fceschmidt";
repo = "bullshit-arch";
rev = "d65e4bbbea76bb752842c2c464154a7b417783fa";
hash = "sha256-sqtQDaWtfhn9XYRsF8lVLHYb+7o9Hf7rLKsX6dw3Sh4=";
};
installPhase = ''
runHook preInstall
install -Dm555 src/bullshit -t $out/bin
install -Dm444 src/bullshit_lib $out/share/wordlists/bullshit.txt
runHook postInstall
'';
fixupPhase = ''
runHook preFixup
patchShebangs $out/bin/bullshit
substituteInPlace $out/bin/bullshit \
--replace /usr/lib/bullshit $out/share/wordlists/bullshit.txt \
--replace awk '${gawk}/bin/awk'
runHook postFixup
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Nonsense phrase generator";
mainProgram = "bullshit";
homepage = "https://github.com/fceschmidt/bullshit-arch";
license = licenses.gpl2Only;
maintainers = with maintainers; [ krloer ];
inherit (gawk.meta) platforms;
};
}