1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 17:41:12 +00:00
nixpkgs/pkgs/build-support/build-fhs-userenv/chrootenv/default.nix
2018-11-04 11:33:34 +00:00

17 lines
397 B
Nix

{ stdenv, meson, ninja, pkgconfig, glib }:
stdenv.mkDerivation {
name = "chrootenv";
src = ./.;
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ glib ];
meta = with stdenv.lib; {
description = "Setup mount/user namespace for FHS emulation";
license = licenses.mit;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}