chntpw: new expression
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chntpw-${version}";
|
||||
|
||||
version = "140201";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pogostick.net/~pnh/ntpasswd/chntpw-source-${version}.zip";
|
||||
sha256 = "1k1cxsj0221dpsqi5yibq2hr7n8xywnicl8yyaicn91y8h2hkqln";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
patches = [
|
||||
./00-chntpw-build-arch-autodetect.patch
|
||||
./01-chntpw-install-target.patch
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
make install PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pogostick.net/~pnh/ntpasswd/;
|
||||
description = "An utility to reset the password of any user that has a valid local account on a Windows system";
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user