summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2019-12-22 00:53:41 +0100
committerGitHub <noreply@github.com>2019-12-22 00:53:41 +0100
commit8317f222654cdcfc87c1707800fdd59dd8970181 (patch)
treee53658bee379220621f28d00ffcff93c5c4ab086 /pkgs/applications
parent15511b7245139483f15d303e51eaf9a77a11fe4d (diff)
parentfa3793e8a48452d5b94fcc729c6a8e39a411869a (diff)
downloadnixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar.gz
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar.bz2
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar.lz
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar.xz
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.tar.zst
nixpkgs-8317f222654cdcfc87c1707800fdd59dd8970181.zip
Merge pull request #76152 from markuskowa/lic-gnunet
gnunet: fix license
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/p2p/gnunet/default.nix2
-rw-r--r--pkgs/applications/networking/p2p/gnunet/git.nix6
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/gnunet/default.nix b/pkgs/applications/networking/p2p/gnunet/default.nix
index a461b1fbd74..eff2499be9d 100644
--- a/pkgs/applications/networking/p2p/gnunet/default.nix
+++ b/pkgs/applications/networking/p2p/gnunet/default.nix
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
     '';
 
     homepage = https://gnunet.org/;
-    license = licenses.gpl2Plus;
+    license = licenses.agpl3Plus;
     maintainers = with maintainers; [ vrthra ];
     platforms = platforms.gnu ++ platforms.linux;
   };
diff --git a/pkgs/applications/networking/p2p/gnunet/git.nix b/pkgs/applications/networking/p2p/gnunet/git.nix
index c9e2f8f6714..e8f209239bf 100644
--- a/pkgs/applications/networking/p2p/gnunet/git.nix
+++ b/pkgs/applications/networking/p2p/gnunet/git.nix
@@ -64,7 +64,7 @@ stdenv.mkDerivation {
     '';
   */
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "GNUnet, GNU's decentralized anonymous and censorship-resistant P2P framework";
 
     longDescription = ''
@@ -84,9 +84,9 @@ stdenv.mkDerivation {
 
     homepage = https://gnunet.org/;
 
-    license = stdenv.lib.licenses.gpl2Plus;
+    license = licenses.agpl3Plus;
 
     maintainers = with stdenv.lib.maintainers; [ ];
-    platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
+    platforms = platforms.gnu ++ platforms.linux;
   };
 }