17 lines
340 B
Nix
17 lines
340 B
Nix
{
|
|
fetchFromGitHub,
|
|
nixpkgsPath,
|
|
src,
|
|
}: let
|
|
hydraRelease = (import (src + "/release.nix") {
|
|
#hydraRelease = (import src {
|
|
nixpkgs = nixpkgsPath;
|
|
hydraSrc = {
|
|
outPath = src;
|
|
rev = builtins.substring 0 6 src.rev;
|
|
revCount = 1234;
|
|
};
|
|
});
|
|
in
|
|
hydraRelease.build.x86_64-linux.overrideAttrs (drv: {})
|