2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip }:
|
2014-08-04 10:03:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "chntpw";
|
2014-08-04 10:03:49 +01:00
|
|
|
|
|
|
|
version = "140201";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://pogostick.net/~pnh/ntpasswd/chntpw-source-${version}.zip";
|
|
|
|
sha256 = "1k1cxsj0221dpsqi5yibq2hr7n8xywnicl8yyaicn91y8h2hkqln";
|
|
|
|
};
|
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ stdenv.glibc.out stdenv.glibc.static ];
|
2014-08-04 10:03:49 +01:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
./00-chntpw-build-arch-autodetect.patch
|
|
|
|
./01-chntpw-install-target.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install PREFIX=$out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pogostick.net/~pnh/ntpasswd/";
|
2014-08-04 10:03:49 +01:00
|
|
|
description = "An utility to reset the password of any user that has a valid local account on a Windows system";
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ deepfire ];
|
2014-08-04 10:03:49 +01:00
|
|
|
license = licenses.gpl2;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = with lib.platforms; linux;
|
2014-08-04 10:03:49 +01:00
|
|
|
};
|
|
|
|
}
|