nix-GINsim/shell.nix

9 lines
150 B
Nix

with import <nixpkgs> {};
let
ginsim = callPackage ./ginsim.nix {};
in
stdenv.mkDerivation {
name = "GINsim-shell";
buildInputs = [ ginsim ];
}