commit 17d5483070fb2dae3950861369f574d7a27b0359 parent 2673d5b860837e4b7ebbd6977cfd06d55957947e Author: Suzanne Soy <git@suzanne.soy> Date: Sun, 21 Feb 2021 23:33:43 +0000 Added gzip dependency, gitignore result@ Diffstat:
| M | .gitignore | | | 2 | ++ |
| M | flake.nix | | | 2 | +- |
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore @@ -1 +1,2 @@ /test/ +/result +\ No newline at end of file diff --git a/flake.nix b/flake.nix @@ -8,7 +8,7 @@ let system = "x86_64-linux"; in let nixpkgs = import nixpkgs-git { config = { allowUnfree = true;}; system = system; }; in - let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk git file bash bashInteractive gnutar ]; in + let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk git file bash bashInteractive gnutar gzip ]; in with import nixpkgs-git { system = "x86_64-linux"; }; symlinkJoin {