mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / cm / cmospwd / package.nix
blob9243afa1aad75c932c96f892532b1b90cbec7de9
1 { lib
2 , fetchurl
3 , stdenv
4 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "cmospwd";
8   version = "5.1";
10   src = fetchurl {
11     url = "https://www.cgsecurity.org/cmospwd-${finalAttrs.version}.tar.bz2";
12     hash = "sha256-8pbSl5eUsKa3JrgK/JLk0FnGXcJhKksJN3wWiDPYYvQ=";
13   };
15   makeFlags = [ "CC:=$(CC)" ];
17   preConfigure = ''
18     cd src
20     # It already contains compiled executable (that doesn't work), so make
21     # will refuse to build if it's still there
22     rm cmospwd
23   '';
25   # There is no install make target
26   installPhase = ''
27     runHook preInstall
28     install -Dm0755 cmospwd -t "$out/bin"
29     runHook postInstall
30   '';
32   meta = with lib; {
33     description = "Decrypt password stored in cmos used to access BIOS SETUP";
34     mainProgram = "cmospwd";
35     homepage = "https://www.cgsecurity.org/wiki/CmosPwd";
36     license = licenses.gpl2Plus;
37     maintainers = with maintainers; [ t4ccer ];
38     platforms = [ "x86_64-linux" ];
39   };