1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00
nixpkgs/pkgs/tools/security/chntpw/default.nix

33 lines
884 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, unzip }:
2014-08-04 10:03:49 +01:00
stdenv.mkDerivation rec {
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";
};
buildInputs = [ unzip ]
++ stdenv.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
'';
meta = with lib; {
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";
2015-08-24 20:55:13 +01:00
maintainers = with stdenv.lib.maintainers; [ deepfire ];
2014-08-04 10:03:49 +01:00
license = licenses.gpl2;
platforms = with stdenv.lib.platforms; linux;
2014-08-04 10:03:49 +01:00
};
}