summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-08-23 10:58:18 +0100
committerGitHub <noreply@github.com>2018-08-23 10:58:18 +0100
commit74d1acd762798ac4b29ac18b6eaec27e01c85877 (patch)
treeed49c6ca2fd1545555388506d4d96d6ff9015bad /pkgs/tools/filesystems
parent9985ed68f0af528d60099bd8881dc2ca15369e85 (diff)
parent229a2332f6d0dcdbff0c494b32051bf9deed33f1 (diff)
downloadnixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar.gz
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar.bz2
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar.lz
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar.xz
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.tar.zst
nixpkgs-74d1acd762798ac4b29ac18b6eaec27e01c85877.zip
Merge pull request #45336 from Mic92/licenses
Add licenses
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/9pfs/default.nix3
-rw-r--r--pkgs/tools/filesystems/aefs/default.nix11
2 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/filesystems/9pfs/default.nix b/pkgs/tools/filesystems/9pfs/default.nix
index 37ec4105472..2e34c9dd485 100644
--- a/pkgs/tools/filesystems/9pfs/default.nix
+++ b/pkgs/tools/filesystems/9pfs/default.nix
@@ -22,9 +22,10 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = {
-    #homepage = https://github.com/spewspew/9pfs; # the account apparently doesn't exist
+    homepage = https://github.com/mischief/9pfs;
     description = "FUSE-based client of the 9P network filesystem protocol";
     maintainers = [ lib.maintainers.eelco ];
     platforms = lib.platforms.linux;
+    license = with lib.licenses; [ lpl-102 bsd2 ];
   };
 }
diff --git a/pkgs/tools/filesystems/aefs/default.nix b/pkgs/tools/filesystems/aefs/default.nix
index d081f08ffc7..9ea4d092548 100644
--- a/pkgs/tools/filesystems/aefs/default.nix
+++ b/pkgs/tools/filesystems/aefs/default.nix
@@ -1,8 +1,8 @@
 { stdenv, fetchurl, fuse }:
-  
+
 stdenv.mkDerivation rec {
   name = "aefs-0.4pre259-8843b7c";
-  
+
   src = fetchurl {
     url = "http://tarballs.nixos.org/${name}.tar.bz2";
     sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
@@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ fuse ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://www.st.ewi.tudelft.nl/~dolstra/aefs/;
     description = "A cryptographic filesystem implemented in userspace using FUSE";
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.eelco ];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.eelco ];
+    license = licenses.gpl2;
   };
 }