Advertisement
Guest User

Untitled

a guest
Dec 28th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. let
  2. repository = (buildMaven ./project-info.json).repo;
  3. # the actual jar itself build in a derivation by buildMaven
  4. jar = (buildMaven ./project-info.json).build;
  5. jar_in_repository = linkFarm "jar-in-repository" [{
  6. name = "org/nixos/mvn2nix/mvn2nix-maven-plugin/2.0/${jar.name}";
  7. path = jar;
  8. }];
  9. aggregate_repository = symlinkJoin {
  10. name = "aggregate-repository";
  11. paths = [ repository jar_in_repository ];
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement