1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

Pill 13: Fix typo in repository derivation snippet

This commit is contained in:
Markus Fuchs 2023-04-05 20:51:47 +02:00
parent 2f263f3a66
commit f95dd06a92

View file

@ -1,4 +1,4 @@
rec {
lib1 = import package1.nix { inherit input1 input2 ...; };
program2 = import package1.nix { inherit inputX inputY lib1 ...; };
program2 = import package2.nix { inherit inputX inputY lib1 ...; };
}