Merge pull request #23574 from Mic92/lxcfs

lxcfs: 2.0.4 -> unstable-2017-03-02
This commit is contained in:
Jörg Thalheim 2017-03-07 10:51:45 +01:00 committed by GitHub
commit 60ac9ece84
1 changed files with 10 additions and 7 deletions

View File

@ -1,16 +1,19 @@
{ stdenv, fetchurl, pkgconfig, help2man, fuse, pam }: { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "lxcfs-${version}"; # use unstable because it fixed some serious crashes,
version = "2.0.4"; # stable should be reconsidered in future
name = "lxcfs-unstable-2017-03-02";
src = fetchurl { src = fetchFromGitHub {
url = "https://linuxcontainers.org/downloads/lxcfs/lxcfs-${version}.tar.gz"; owner = "lxc";
sha256 = "0pfrsn7hqccpcnwg4xk8ds0avb2yc9gyvj7bk2bl90vpwsm35j7y"; repo = "lxcfs";
sha256 = "1say5bf6gknzs0aymvrg2xiypc311gcdcfdmvb2vnz058pmianq9";
rev = "4a6707e130b4b65a33606ebc18a95ec471f4bf40";
}; };
nativeBuildInputs = [ pkgconfig help2man ]; nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
buildInputs = [ fuse pam ]; buildInputs = [ fuse pam ];
configureFlags = [ configureFlags = [