diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-04-20 15:13:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 15:13:44 +0200 |
| commit | 086a5861def11036b897c8b21be9af17bbeacc29 (patch) | |
| tree | f67a1e323166b96990c950641e4dcbe6327c465e /shell.nix | |
| parent | 7cade98cf386d1909b3b1568c30bbe60765ac452 (diff) | |
| parent | 732172e2b49a1c468d9097cf937d8da83e6f061f (diff) | |
| download | openrussian-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.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 ]; +} |
