diff options
author | Justin Bedo <cu@cua0.org> | 2018-12-19 16:45:23 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2018-12-19 16:45:23 +1100 |
commit | a458b2813b2b0749e801098fe8aa03d8444141a6 (patch) | |
tree | 1787d72a4fa16d930215a54627e2017c45228bbe | |
parent | 0e2e1e2c432d597e477890297b9a29f743acb1b9 (diff) |
bionix: export nixpkgs.lib as bionix.lib
-rw-r--r-- | default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 1e647dd..27afcb5 100644 --- a/default.nix +++ b/default.nix @@ -57,6 +57,7 @@ let fetchFastQGZ = attrs: with types; tagFiletype (filetype.gz (filetype.fq {})) (fetchurl attrs); fetchFastAGZ = attrs: with types; tagFiletype (filetype.gz (filetype.fa {})) (fetchurl attrs); - + # Export nixpkgs' lib + lib = nixpkgs.lib; }); in bionix |