aboutsummaryrefslogtreecommitdiff
path: root/tools/crumble.nix
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2019-01-09 16:38:42 +1100
committerJustin Bedo <cu@cua0.org>2019-01-09 16:38:42 +1100
commitc3babc9eb65dc8c56d07ce8a6ee0d8c03bbd223e (patch)
treef7d88ec21635664781c7c79fe0ea6f962ae38004 /tools/crumble.nix
parent9fd618d0305d4927c8d86fc37238d1216e401967 (diff)
large refactor
- use bionix.pkgs instead of nixpkgs - replace stdenv.mkDerivation with stage
Diffstat (limited to 'tools/crumble.nix')
-rw-r--r--tools/crumble.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/crumble.nix b/tools/crumble.nix
index 6031fca..4256f37 100644
--- a/tools/crumble.nix
+++ b/tools/crumble.nix
@@ -1,8 +1,7 @@
-{ bionix, nixpkgs }:
+{ bionix }:
-with nixpkgs;
with bionix;
{
- crumble = callPackage ./crumble-app.nix {};
+ crumble = pkgs.callPackage ./crumble-app.nix {};
}