aboutsummaryrefslogtreecommitdiff
path: root/build.nix
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-13 15:32:16 -0300
committerEuAndreh <eu@euandre.org>2023-03-13 15:36:07 -0300
commit0e3b01ddaf1285f60ec07865b008248d25e6121c (patch)
tree5e333b6ba39e8c01ee779d1af7f1ed88ab555f67 /build.nix
parentpackages.scm: Remove td-latest package (diff)
downloadpackage-repository-0e3b01ddaf1285f60ec07865b008248d25e6121c.tar.gz
package-repository-0e3b01ddaf1285f60ec07865b008248d25e6121c.tar.xz
Build nix derivation without the "shell.nix" hack
Diffstat (limited to '')
-rw-r--r--build.nix6
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)