From 17d5483070fb2dae3950861369f574d7a27b0359 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 21 Feb 2021 23:33:43 +0000 Subject: [PATCH] Added gzip dependency, gitignore result@ --- .gitignore | 1 + flake.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1933786..91f048d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /test/ +/result \ No newline at end of file diff --git a/flake.nix b/flake.nix index a3b9db5..eac499d 100644 --- 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 {