summaryrefslogtreecommitdiff
path: root/nix/default.nix
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2021-08-08 07:57:45 -0600
committerBrian Picciano <mediocregopher@gmail.com>2021-08-08 08:43:17 -0600
commit6feffc568ae790a883b9e0509d755e7d9bd82ee1 (patch)
treef913ce47e9f8204e5cf882f382d10e178e02367f /nix/default.nix
parent0197d9cd493b5785bca05f476856540ec64da64a (diff)
refactor how nix derivations are organized and built
Diffstat (limited to 'nix/default.nix')
-rw-r--r--nix/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/nix/default.nix b/nix/default.nix
deleted file mode 100644
index 438e083..0000000
--- a/nix/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- pkgs ? import (fetchTarball {
- name = "nixpkgs-21-05";
- url = "https://github.com/NixOS/nixpkgs/archive/7e9b0dff974c89e070da1ad85713ff3c20b0ca97.tar.gz";
- sha256 = "1ckzhh24mgz6jd1xhfgx0i9mijk6xjqxwsshnvq789xsavrmsc36";
- }) {},
- system ? builtins.currentSystem,
-}:
- {
- pkgs = pkgs;
- system = system;
- }
-