mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
fakechroot: 2.17.2 -> 2.19 (with modification)
There's a PR I need merged so this is currently pointing at a fork on my GitHub but I'll repoint it to mainline once that gets merged.
This commit is contained in:
parent
bd0d8ed807
commit
7a113e9e83
@ -1,14 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fakechroot-${version}";
|
||||
version = "2.17.2";
|
||||
version = "2.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/dex4er/fakechroot/archive/${version}.tar.gz";
|
||||
sha256 = "0z4cxj4lb8cfb63sw82dbc31hf082fv3hshbmhk49cqkc0f673q3";
|
||||
# TODO: move back to mainline once https://github.com/dex4er/fakechroot/pull/46 is merged
|
||||
src = fetchFromGitHub {
|
||||
owner = "copumpkin";
|
||||
repo = "fakechroot";
|
||||
rev = "dcc0cfe3941e328538f9e62b2c0b15430d393ec1";
|
||||
sha256 = "1ls3y97qqfcfd3z0balz94xq1gskfk04pg85x6b7wjw8dm4030qd";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/dex4er/fakechroot;
|
||||
description = "Give a fake chroot environment through LD_PRELOAD";
|
||||
|
Loading…
Reference in New Issue
Block a user