spejstore/shell.nix

9 lines
177 B
Nix
Raw Permalink Normal View History

2020-03-11 20:47:43 +00:00
with import <nixpkgs> { };
let
spejstore = callPackage ./default.nix { };
in stdenv.mkDerivation rec {
name = "spejstore-env";
buildInputs = spejstore.runtimePackages;
}