nix-GINsim/shell.nix

6 lines
126 B
Nix
Raw Normal View History

2020-07-09 12:04:40 +02:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "GINsim-shell";
buildInputs = [ (callPackage ./ginsim.nix {}) ];
2020-07-09 12:04:40 +02:00
}