summary refs log tree commit diff
path: root/pkgs/tools/system/proot
diff options
context:
space:
mode:
authorIan-Woo Kim <ianwookim@gmail.com>2014-10-07 02:37:23 +0200
committerIan-Woo Kim <ianwookim@gmail.com>2014-10-07 02:37:23 +0200
commit609bea973a29886be7492208d536434365592919 (patch)
treefa8901c28ca2e1e2e118ffa14d0006b1ca7e7f4d /pkgs/tools/system/proot
parent95b12bf0bedd1cd241ea2468464286dcc2a209bb (diff)
downloadnixpkgs-609bea973a29886be7492208d536434365592919.tar
nixpkgs-609bea973a29886be7492208d536434365592919.tar.gz
nixpkgs-609bea973a29886be7492208d536434365592919.tar.bz2
nixpkgs-609bea973a29886be7492208d536434365592919.tar.lz
nixpkgs-609bea973a29886be7492208d536434365592919.tar.xz
nixpkgs-609bea973a29886be7492208d536434365592919.tar.zst
nixpkgs-609bea973a29886be7492208d536434365592919.zip
proot: User-space implementation of chroot, mount --bind and binfmt_misc
Diffstat (limited to 'pkgs/tools/system/proot')
-rw-r--r--pkgs/tools/system/proot/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/system/proot/default.nix b/pkgs/tools/system/proot/default.nix
new file mode 100644
index 00000000000..19f88a0e5b2
--- /dev/null
+++ b/pkgs/tools/system/proot/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchgit, talloc }:
+
+stdenv.mkDerivation rec {
+  name = "proot-${version}";
+  version = "4.0.3";
+
+  src = fetchgit {
+    url = "git://github.com/cedric-vincent/proot.git";
+    rev = "refs/tags/v${version}";
+    sha256 = "95a52b2fa47b2891eb2c6b6b0e14d42f6d48f6fd5181e359b007831f1a046e84";
+  };
+
+  buildInputs = [ talloc ];
+
+  preBuild = ''
+    substituteInPlace GNUmakefile --replace "/usr/local" "$out"
+  '';
+
+  phases = [ "unpackPhase" "buildPhase" "installPhase" ];
+
+
+
+  sourceRoot = "git-export/src";
+
+  meta = with stdenv.lib; {
+    homepage = http://proot.me;
+    description = "User-space implementation of chroot, mount --bind and binfmt_misc";
+    platforms = platforms.linux;
+    license = licenses.gpl2;
+    maintainers = with self.stdenv.lib.maintainers; [ ianwookim ];
+  };
+}
+