Skip to content

Commit 08cb5a8

Browse files
committed
Add default.nix
Tested: nix-shell --pure --run make
1 parent e1ee639 commit 08cb5a8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

default.nix

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{ pkgs ? (import <nixpkgs> {})
2+
, ocamlPackages ? pkgs.ocaml-ng.ocamlPackages_4_06
3+
}:
4+
5+
with pkgs;
6+
7+
stdenv.mkDerivation rec {
8+
9+
name = "vscoq";
10+
src = null;
11+
12+
buildInputs = [
13+
wget
14+
nodejs
15+
nodePackages.npm
16+
];
17+
18+
}

0 commit comments

Comments
 (0)