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
2
3
3
with stdenv.lib;
4
4
stdenv.mkDerivation rec {
5
5
-
# use unstable because it fixed some serious crashes,
6
6
-
# stable should be reconsidered in future
7
7
-
name = "lxcfs-unstable-2017-03-02";
5
5
+
name = "lxcfs-2.0.7";
8
6
9
7
src = fetchFromGitHub {
10
8
owner = "lxc";
11
9
repo = "lxcfs";
12
12
-
sha256 = "1say5bf6gknzs0aymvrg2xiypc311gcdcfdmvb2vnz058pmianq9";
13
13
-
rev = "4a6707e130b4b65a33606ebc18a95ec471f4bf40";
10
10
+
rev = name;
11
11
+
sha256 = "1z6d52dc12rcplgc9jdgi3lbxm6ahlsjgs1k8v8kvn261xsq1m0a";
14
12
};
15
13
16
14
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
···
34
32
description = "FUSE filesystem for LXC";
35
33
license = licenses.asl20;
36
34
platforms = platforms.linux;
37
37
-
maintainers = with maintainers; [ mic92 ];
35
35
+
maintainers = with maintainers; [ mic92 fpletz ];
38
36
};
39
37
}