Merge pull request #45336 from Mic92/licenses

Add licenses
This commit is contained in:
Jörg Thalheim
2018-08-23 10:58:18 +01:00
committed by GitHub
8 changed files with 28 additions and 14 deletions

View File

@@ -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 ];
};
}

View File

@@ -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;
};
}