summary refs log tree commit diff
path: root/pkgs/build-support/build-fhs-userenv/chrootenv/meson.build
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-11-04 11:33:34 +0000
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-11-04 11:33:34 +0000
commitcea0e9226f09a7887a82094a06d77809181b615f (patch)
tree152b035e5f718d59b75165ce5808797e1141a4af /pkgs/build-support/build-fhs-userenv/chrootenv/meson.build
parentccb76eeb3c607704726deb81eacf26b2ec920c6d (diff)
downloadnixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar.gz
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar.bz2
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar.lz
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar.xz
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.tar.zst
nixpkgs-cea0e9226f09a7887a82094a06d77809181b615f.zip
chrootenv: use meson
Diffstat (limited to 'pkgs/build-support/build-fhs-userenv/chrootenv/meson.build')
-rw-r--r--pkgs/build-support/build-fhs-userenv/chrootenv/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/build-support/build-fhs-userenv/chrootenv/meson.build b/pkgs/build-support/build-fhs-userenv/chrootenv/meson.build
new file mode 100644
index 00000000000..6d0770a0dc4
--- /dev/null
+++ b/pkgs/build-support/build-fhs-userenv/chrootenv/meson.build
@@ -0,0 +1,5 @@
+project('chrootenv', 'c')
+
+glib = dependency('glib-2.0')
+
+executable('chrootenv', 'chrootenv.c', dependencies: [glib], install: true)