about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/bu/bullshit/package.nix
blob: 64f50f1d2b306018f66b3ad94d01e56ffdc9146b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ 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 = "A nonsense phrase generator";
    homepage = "https://github.com/fceschmidt/bullshit-arch";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ krloer ];
    inherit (gawk.meta) platforms;
  };
}