mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
5daee73ce4
Hydra passes the full revision in to the input, which we pass through. If we don't get this ,we try to get it from other sources, or default to master which should have the definition in a close-ish location. All published docs should have theURL resolve properly, only local hackers will have the link break.
6 lines
140 B
Nix
6 lines
140 B
Nix
{ pkgs ? import ../. {} }:
|
|
(import ./default.nix {}).overrideAttrs (x: {
|
|
buildInputs = x.buildInputs ++ [ pkgs.xmloscopy pkgs.ruby ];
|
|
|
|
})
|