nixpkgs/pkgs/build-support/build-fhs-userenv/chrootenv/default.nix

17 lines
397 B
Nix
Raw Normal View History

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