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

stdenv.mkDerivation {
  name = "chrootenv";
  src = ./.;

  nativeBuildInputs = [ meson ninja pkgconfig ];
  buildInputs = [ glib ];

  meta = with lib; {
    description = "Setup mount/user namespace for FHS emulation";
    license = licenses.mit;
    maintainers = with maintainers; [ yegortimoshenko ];
    platforms = platforms.linux;
  };
}