Skip to content
Snippets Groups Projects
Select Git revision
  • 8565b145c3104f7d2fcf519bda99b7e178b296e1
  • develop default protected
  • dont-use-etc-hosts
  • sec
  • simplify-grafana
  • simple-docs-build
  • local-test-grid
  • no-morph-on-nodes
  • stuff
  • arion
10 results

shell.nix

Blame
  • Forked from PrivateStorage / PrivateStorageio
    Source project has a limited visibility.
    shell.nix 371 B
    let
      nixpkgs = import (builtins.fetchTarball (builtins.fromJSON (builtins.readFile ./nixpkgs.json))) { };
      stable2105 = import (builtins.fetchTarball (builtins.fromJSON (builtins.readFile ./nixpkgs-2105.json))) { };
    in
    { pkgs ? nixpkgs }:
    pkgs.mkShell {
      NIX_PATH = "nixpkgs=${nixpkgs.path}";
      buildInputs = [
        pkgs.morph
        stable2105.vagrant
        pkgs.jp
      ];
    }