nix-GINsim/shell.nix

6 lines
126 B
Nix

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