add default.nix

This commit is contained in:
Denis Lehmann 2020-11-26 20:26:37 +01:00
parent 2802ade347
commit d88606ad2a

10
default.nix Normal file
View file

@ -0,0 +1,10 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "myEnv";
buildInputs = with pkgs; [
bc
wget
];
src = null;
}