summaryrefslogtreecommitdiff
path: root/metrics/shell.nix
diff options
context:
space:
mode:
authorhyperion <hyperion@spacekookie.de>2020-10-30 12:00:11 +0100
committerhyperion <hyperion@spacekookie.de>2020-10-30 12:00:11 +0100
commit857e0584d19e0abbc9f73a7ea9aea24be6a6786e (patch)
tree2ffbd6a261b00b6adfb148d458c6185a0ddf59a9 /metrics/shell.nix
parent43fc40d5dc18615aab9b99f940de59a8da20a902 (diff)
Refactoring repository structure and building basic nix module
Diffstat (limited to 'metrics/shell.nix')
-rw-r--r--metrics/shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/metrics/shell.nix b/metrics/shell.nix
new file mode 100644
index 0000000..2fa04ad
--- /dev/null
+++ b/metrics/shell.nix
@@ -0,0 +1,6 @@
+with import <nixpkgs> {};
+
+stdenv.mkDerivation {
+ name = "brook-metrics";
+ buildInputs = with pkgs; [ rustup clangStdenv ];
+}