summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-03-30 15:00:17 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-03-30 15:16:46 +0200
commit7576a46a4ec2a2984c39da686136f4a1d1db916b (patch)
tree0a57614408dbe8a3fbf1f5caa54aa815b0e7d87e
parent05f25172d83b0d642b0030d4a52885aab640f276 (diff)
Add ci.nix for nix based CI environment
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--ci.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/ci.nix b/ci.nix
new file mode 100644
index 00000000..3b9e0188
--- /dev/null
+++ b/ci.nix
@@ -0,0 +1,22 @@
+{ pkgs ? (import <nixpkgs> {}) }:
+
+pkgs.mkShell {
+ buildInputs = with pkgs; [
+ rustc
+ cargo
+
+ cmake
+ curl
+ gcc
+ libpsl
+ openssl
+ pkgconfig
+ which
+ zlib
+ dbus
+ libtool
+ ];
+ LIBCLANG_PATH = "${pkgs.llvmPackages.libclang}/lib";
+}
+
+