2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, meson, ninja, pkg-config, glib }:
|
2017-12-28 05:49:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "chrootenv";
|
2018-11-04 11:33:34 +00:00
|
|
|
src = ./.;
|
2017-12-28 05:49:35 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2017-12-28 05:49:35 +00:00
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-28 05:49:35 +00:00
|
|
|
description = "Setup mount/user namespace for FHS emulation";
|
2018-11-04 11:33:34 +00:00
|
|
|
license = licenses.mit;
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2017-12-28 05:49:35 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|