summary refs log tree commit diff
path: root/pkgs/build-support/build-fhs-userenv/chrootenv/default.nix
blob: b9d2de7277eb71d69b7fb1fffb5fe87747ad1996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, stdenv, meson, ninja, pkg-config, glib }:

stdenv.mkDerivation {
  name = "chrootenv";
  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;
  };
}