nightlight/default.nix
2020-11-26 20:26:37 +01:00

10 lines
133 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "myEnv";
buildInputs = with pkgs; [
bc
wget
];
src = null;
}