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

28 lines
415 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
meson,
ninja,
pkg-config,
glib,
}:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation {
name = "chrootenv";
src = ./src;
2024-06-30 08:16:52 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
];
2024-05-02 00:46:19 +00:00
buildInputs = [ glib ];
meta = with lib; {
description = "Setup mount/user namespace for FHS emulation";
license = licenses.mit;
maintainers = with maintainers; [ yana ];
platforms = platforms.linux;
};
}