diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2021-04-20 23:08:42 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2021-04-20 23:08:42 +1000 |
commit | 732172e2b49a1c468d9097cf937d8da83e6f061f (patch) | |
tree | f67a1e323166b96990c950641e4dcbe6327c465e /shell.nix | |
parent | 60507fcfdc2c8901d413a83ea7543b1dd1e9ca37 (diff) | |
download | openrussian-cli-732172e2b49a1c468d9097cf937d8da83e6f061f.tar.gz |
meta: add Nix build scripts
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 7 |
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 ]; +} |