secrets/shell.nix

27 lines
832 B
Nix
Raw Normal View History

2020-12-02 17:51:43 +01:00
/*
Copyright 2020-2024 Martin Puppe
2020-12-02 17:51:43 +01:00
This file is part of Secrets.
Secrets is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Secrets is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Secrets. If not, see <https://www.gnu.org/licenses/>.
*/
2020-11-24 03:18:27 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
openssh
racket-minimal
];
}