core/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
415 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{
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 = with maintainers; [ yana ];
platforms = platforms.linux;
};
}