tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lxcfs: 2017-03-02 -> 2.0.7
Franz Pletz
8 years ago
9da4cb17
eb8c1475
+4
-6
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
lxcfs
default.nix
+4
-6
pkgs/os-specific/linux/lxcfs/default.nix
···
2
3
with stdenv.lib;
4
stdenv.mkDerivation rec {
5
-
# use unstable because it fixed some serious crashes,
6
-
# stable should be reconsidered in future
7
-
name = "lxcfs-unstable-2017-03-02";
8
9
src = fetchFromGitHub {
10
owner = "lxc";
11
repo = "lxcfs";
12
-
sha256 = "1say5bf6gknzs0aymvrg2xiypc311gcdcfdmvb2vnz058pmianq9";
13
-
rev = "4a6707e130b4b65a33606ebc18a95ec471f4bf40";
14
};
15
16
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
···
34
description = "FUSE filesystem for LXC";
35
license = licenses.asl20;
36
platforms = platforms.linux;
37
-
maintainers = with maintainers; [ mic92 ];
38
};
39
}
···
2
3
with stdenv.lib;
4
stdenv.mkDerivation rec {
5
+
name = "lxcfs-2.0.7";
0
0
6
7
src = fetchFromGitHub {
8
owner = "lxc";
9
repo = "lxcfs";
10
+
rev = name;
11
+
sha256 = "1z6d52dc12rcplgc9jdgi3lbxm6ahlsjgs1k8v8kvn261xsq1m0a";
12
};
13
14
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
···
32
description = "FUSE filesystem for LXC";
33
license = licenses.asl20;
34
platforms = platforms.linux;
35
+
maintainers = with maintainers; [ mic92 fpletz ];
36
};
37
}