Unverified Commit 058a0bba authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #249457 from t4ccer/t4/init-cmospwd

cmospwd: init at 5.1
parents 8a8350fc 0c9a9ae6
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ 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=";
  };

  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";
    homepage = "https://www.cgsecurity.org/wiki/CmosPwd";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ t4ccer ];
    platforms = platforms.linux;
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -6731,6 +6731,8 @@ with pkgs;
  cmigemo = callPackage ../tools/text/cmigemo { };
  cmospwd = callPackage ../tools/security/cmospwd { };
  cmst = libsForQt5.callPackage ../tools/networking/cmst { };
  cmt = callPackage ../applications/audio/cmt { };