tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
aefs: add license
Jörg Thalheim
7 years ago
229a2332
f120ee3c
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
aefs
default.nix
+6
-5
pkgs/tools/filesystems/aefs/default.nix
···
1
1
{ stdenv, fetchurl, fuse }:
2
2
-
2
2
+
3
3
stdenv.mkDerivation rec {
4
4
name = "aefs-0.4pre259-8843b7c";
5
5
-
5
5
+
6
6
src = fetchurl {
7
7
url = "http://tarballs.nixos.org/${name}.tar.bz2";
8
8
sha256 = "167hp58hmgdavg2mqn5dx1xgq24v08n8d6psf33jhbdabzx6a6zq";
···
10
10
11
11
buildInputs = [ fuse ];
12
12
13
13
-
meta = {
13
13
+
meta = with stdenv.lib; {
14
14
homepage = http://www.st.ewi.tudelft.nl/~dolstra/aefs/;
15
15
description = "A cryptographic filesystem implemented in userspace using FUSE";
16
16
-
platforms = stdenv.lib.platforms.linux;
17
17
-
maintainers = [ stdenv.lib.maintainers.eelco ];
16
16
+
platforms = platforms.linux;
17
17
+
maintainers = [ maintainers.eelco ];
18
18
+
license = licenses.gpl2;
18
19
};
19
20
}