diff options
author | EuAndreh <eu@euandre.org> | 2023-03-13 15:32:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-13 15:36:07 -0300 |
commit | 0e3b01ddaf1285f60ec07865b008248d25e6121c (patch) | |
tree | 5e333b6ba39e8c01ee779d1af7f1ed88ab555f67 /build.nix | |
parent | packages.scm: Remove td-latest package (diff) | |
download | package-repository-0e3b01ddaf1285f60ec07865b008248d25e6121c.tar.gz package-repository-0e3b01ddaf1285f60ec07865b008248d25e6121c.tar.xz |
Build nix derivation without the "shell.nix" hack
Diffstat (limited to '')
-rw-r--r-- | build.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build.nix b/build.nix new file mode 100644 index 0000000..1c578ad --- /dev/null +++ b/build.nix @@ -0,0 +1,6 @@ +{ pkgs ? + import <nixpkgs> { overlays = [ (import ./default.nix { inherit pkgs; }) ]; } +}: + +map (name: pkgs.org-euandre."${name}") + (builtins.attrNames pkgs.org-euandre) |