git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
16 lines
365 B
Nix
16 lines
365 B
Nix
{ lib, stdenv, meson, ninja, pkg-config, glib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "chrootenv";
|
|
src = ./src;
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ glib ];
|
|
|
|
meta = with lib; {
|
|
description = "Setup mount/user namespace for FHS emulation";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|