mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
pwgen: cleanup
This commit is contained in:
parent
61f5b6271d
commit
7803a33a62
@ -1,17 +1,22 @@
|
||||
{lib, stdenv, fetchurl, autoreconfHook}:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pwgen";
|
||||
version = "2.08";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/tytso/pwgen/archive/v${version}.tar.gz";
|
||||
sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tytso";
|
||||
repo = "pwgen";
|
||||
rev = "v${version}";
|
||||
sha256 = "8d6e94f58655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Password generator which creates passwords which can be easily memorized by a human";
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with maintainers; [ ];
|
||||
license = with licenses; [ gpl2Only ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user