summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lxcfs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 02:01:53 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 03:45:48 +0200
commit9da4cb176ad08b1a370e01defcbe36e6ce78d69d (patch)
treeb45994c9b402067e6d52fe023468acf8874966d7 /pkgs/os-specific/linux/lxcfs
parenteb8c14751a3532898e7941ee43a271d8739a6a21 (diff)
downloadnixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar.gz
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar.bz2
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar.lz
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar.xz
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.tar.zst
nixpkgs-9da4cb176ad08b1a370e01defcbe36e6ce78d69d.zip
lxcfs: 2017-03-02 -> 2.0.7
Diffstat (limited to 'pkgs/os-specific/linux/lxcfs')
-rw-r--r--pkgs/os-specific/linux/lxcfs/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/lxcfs/default.nix b/pkgs/os-specific/linux/lxcfs/default.nix
index 2555ce5c6c3..c23457c6b5f 100644
--- a/pkgs/os-specific/linux/lxcfs/default.nix
+++ b/pkgs/os-specific/linux/lxcfs/default.nix
@@ -2,15 +2,13 @@
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
-  # use unstable because it fixed some serious crashes,
-  # stable should be reconsidered in future
-  name = "lxcfs-unstable-2017-03-02";
+  name = "lxcfs-2.0.7";
 
   src = fetchFromGitHub {
     owner = "lxc";
     repo = "lxcfs";
-    sha256 = "1say5bf6gknzs0aymvrg2xiypc311gcdcfdmvb2vnz058pmianq9";
-    rev = "4a6707e130b4b65a33606ebc18a95ec471f4bf40";
+    rev = name;
+    sha256 = "1z6d52dc12rcplgc9jdgi3lbxm6ahlsjgs1k8v8kvn261xsq1m0a";
   };
 
   nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
@@ -34,6 +32,6 @@ stdenv.mkDerivation rec {
     description = "FUSE filesystem for LXC";
     license = licenses.asl20;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ mic92 ];
+    maintainers = with maintainers; [ mic92 fpletz ];
   };
 }