-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
42 lines (36 loc) Β· 958 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
description = "Repl - Simple extensible REPL Command Line Tool π» πβ¨";
inputs = {
utils.url = "github:numtide/flake-utils";
deno2nix = {
url = "github:tsirysndr/deno2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, utils, deno2nix }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ deno2nix.overlays.default ];
};
in
rec {
apps.default = utils.lib.mkApp {
drv = packages.default;
};
packages.default = pkgs.deno2nix.mkExecutable {
pname = "repl";
version = "0.7.0";
src = ./.;
lockfile = "./deno.lock";
config = "./deno.json";
entrypoint = "./main.ts";
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
deno
];
};
});
}