summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: d2d2ec1c7b57e6909fea0b6734ac72c33b7468da (plain)
1
2
3
4
5
{ nixpkgs ? import <nixpkgs> {}, ... }: with nixpkgs;
stdenv.mkDerivation {
  name = "thesauron-shell";
  buildInputs = [ (callPackage ./default.nix {}) ];
}