nix-GINsim/shell.nix

9 lines
150 B
Nix
Raw Normal View History

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