depot/nix/pkgs/heptapod-runner/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ pkgs, depot, ... }:
2020-05-09 00:10:49 +00:00
let
version = "hpd-0.5.0";
2020-05-09 00:10:49 +00:00
newSrc = pkgs.fetchhg {
url = "https://mirror.octobus.net/heptapod/heptapod-runner";
rev = "5843be69a387";
sha256 = "sha256:15iyz7rgi6rb4nf1rjd96lsgdxn2l1ivzh05my7c9zpzvl7cnw25";
2020-05-09 00:10:49 +00:00
};
2020-05-09 22:49:32 +00:00
in
{
heptapod-runner = pkgs.buildGoModule rec {
pname = "heptapod-runner";
2020-05-09 22:49:32 +00:00
inherit version;
commonPackagePath = "gitlab.com/gitlab-org/gitlab-runner/common";
ldflags = [
"-X ${commonPackagePath}.NAME=heptapod-runner"
"-X ${commonPackagePath}.VERSION=${version}"
"-X ${commonPackagePath}.REVISION=v${version}"
];
2020-05-09 22:49:32 +00:00
src = newSrc;
vendorHash = null;
2021-12-25 20:31:34 +00:00
patches = [ ./fix-shell-path.patch ];
doCheck = false;
};
2020-05-09 22:49:32 +00:00
heptapod-runner-mercurial = pkgs.symlinkJoin {
name = pkgs.mercurial.name;
paths = [ pkgs.mercurial ];
postBuild = ''
mkdir -p "$out/etc/mercurial"
2021-12-20 05:56:24 +00:00
cp "${newSrc}/dockerfiles/runner-helper/runner.hgrc" "$out/etc/mercurial/hgrc"
'';
};
2020-05-09 22:49:32 +00:00
}