about summary refs log tree commit diff
path: root/pkgs/tools/security/crunch
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-02-03 11:08:31 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-02-03 11:08:31 +0100
commit246907936671536034c20979c9def3f2bdc6c4fb (patch)
treecfa4fd9717a359c019c60957a595d141845a4cd2 /pkgs/tools/security/crunch
parent94bb7a9ca2eb7a6593050bd38bbefe1f9e187a8f (diff)
crunch: add license
Diffstat (limited to 'pkgs/tools/security/crunch')
-rw-r--r--pkgs/tools/security/crunch/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/security/crunch/default.nix b/pkgs/tools/security/crunch/default.nix
index 2422a2278bb5c..0c7620124d153 100644
--- a/pkgs/tools/security/crunch/default.nix
+++ b/pkgs/tools/security/crunch/default.nix
@@ -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 ];
   };
 }