Merge pull request #10781 from mayflower/update-lxc
lxc: 1.1.3 -> 1.1.4 (security)
This commit is contained in:
commit
a00ac5947a
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, docbook2x
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, perl, docbook2x
|
||||||
, docbook_xml_dtd_45, python3Packages
|
, docbook_xml_dtd_45, python3Packages
|
||||||
|
|
||||||
# Optional Dependencies
|
# Optional Dependencies
|
||||||
|
@ -11,13 +11,12 @@ let
|
||||||
in
|
in
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "lxc-1.1.3";
|
name = "lxc-${version}";
|
||||||
|
version = "1.1.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "lxc";
|
url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz";
|
||||||
repo = "lxc";
|
sha256 = "1p75ff4lnkm7hq26zq09nqbdypl508csk0ix024l7j8v02i2w1wg";
|
||||||
rev = name;
|
|
||||||
sha256 = "109vpkxzkhixfvwfs6qphfbxb7pbk2qx22qc4zbk52d6gl78ygsb";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
Loading…
Reference in New Issue