Merge pull request #111726 from fabaff/license-crunch

crunch: add license
This commit is contained in:
Sandro 2021-02-03 11:58:16 +01:00 committed by GitHub
commit 16f7936113
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl, which }:
stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
pname = "crunch";
version = "3.6";
@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
description = "Wordlist generator";
homepage = "https://sourceforge.net/projects/crunch-wordlist/";
platforms = platforms.unix;
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ lethalman lnl7 ];
};
}