summary refs log tree commit diff
path: root/pkgs/build-support/build-fhsenv-chroot/chrootenv/default.nix
blob: 32ac43d415563f2f1ecbbc13bf30d7b2a2f8470b (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 = ./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;
  };
}