about summary refs log tree commit diff
path: root/pkgs/tools/security/chntpw/default.nix
blob: 814fb0ea0ecc569e4d069b6f429977e2d44b90e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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";
    maintainers = with stdenv.lib.maintainers; [ deepfire ];
    license = licenses.gpl2;
  };
}