about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/cmospwd/default.nix
blob: 9243afa1aad75c932c96f892532b1b90cbec7de9 (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
{ lib
, fetchurl
, stdenv
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "cmospwd";
  version = "5.1";

  src = fetchurl {
    url = "https://www.cgsecurity.org/cmospwd-${finalAttrs.version}.tar.bz2";
    hash = "sha256-8pbSl5eUsKa3JrgK/JLk0FnGXcJhKksJN3wWiDPYYvQ=";
  };

  makeFlags = [ "CC:=$(CC)" ];

  preConfigure = ''
    cd src

    # It already contains compiled executable (that doesn't work), so make
    # will refuse to build if it's still there
    rm cmospwd
  '';

  # There is no install make target
  installPhase = ''
    runHook preInstall
    install -Dm0755 cmospwd -t "$out/bin"
    runHook postInstall
  '';

  meta = with lib; {
    description = "Decrypt password stored in cmos used to access BIOS SETUP";
    mainProgram = "cmospwd";
    homepage = "https://www.cgsecurity.org/wiki/CmosPwd";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ t4ccer ];
    platforms = [ "x86_64-linux" ];
  };
})