a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
16 lines
395 B
Nix
16 lines
395 B
Nix
{ lib, stdenv, meson, ninja, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "chrootenv";
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig ];
|
|
buildInputs = [ glib ];
|
|
|
|
meta = with lib; {
|
|
description = "Setup mount/user namespace for FHS emulation";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|