mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
16 lines
365 B
Nix
16 lines
365 B
Nix
{ 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 = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|