summaryrefslogtreecommitdiff
path: root/pkgs/persistent-nix-shell/default.nix
blob: 5e53ee63c60e97c2a7bb4a98482fada0de2c649a (plain)
1
2
3
4
5
6
7
8
9
{ stdenv, pkgs, ... }:

pkgs.writeTextFile {
  name        = "persistent-nix-shell";
  executable  = true;
  destination = "/bin/persistent-nix-shell";

  text = builtins.readFile ./persistent-nix-shell.sh;
}