aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2021-04-20 23:08:42 +1000
committerZane van Iperen <zane@zanevaniperen.com>2021-04-20 23:08:42 +1000
commit732172e2b49a1c468d9097cf937d8da83e6f061f (patch)
treef67a1e323166b96990c950641e4dcbe6327c465e /shell.nix
parent60507fcfdc2c8901d413a83ea7543b1dd1e9ca37 (diff)
downloadopenrussian-cli-732172e2b49a1c468d9097cf937d8da83e6f061f.tar.gz
meta: add Nix build scripts
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..93c27dc
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? (import <nixpkgs> {}) }:
+let
+ openrussian = pkgs.callPackage ./default.nix {};
+in
+pkgs.mkShell {
+ buildInputs = [ openrussian ];
+}