aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2021-04-20 15:13:44 +0200
committerGitHub <noreply@github.com>2021-04-20 15:13:44 +0200
commit086a5861def11036b897c8b21be9af17bbeacc29 (patch)
treef67a1e323166b96990c950641e4dcbe6327c465e /shell.nix
parent7cade98cf386d1909b3b1568c30bbe60765ac452 (diff)
parent732172e2b49a1c468d9097cf937d8da83e6f061f (diff)
downloadopenrussian-cli-086a5861def11036b897c8b21be9af17bbeacc29.tar.gz
Merge pull request #1 from vs49688/master
Makefile tweaks and Nix{,OS} support
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 ];
+}