mio-ops/profiles/hydra-fork.nix

17 lines
340 B
Nix
Raw Permalink Normal View History

2022-03-07 14:26:15 +00:00
{
fetchFromGitHub,
nixpkgsPath,
src,
}: let
2020-01-28 00:24:03 +00:00
hydraRelease = (import (src + "/release.nix") {
2021-11-16 04:57:23 +00:00
#hydraRelease = (import src {
2020-01-28 00:24:03 +00:00
nixpkgs = nixpkgsPath;
hydraSrc = {
outPath = src;
rev = builtins.substring 0 6 src.rev;
revCount = 1234;
};
});
2022-03-07 14:26:15 +00:00
in
hydraRelease.build.x86_64-linux.overrideAttrs (drv: {})