61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ stdenv, fetchgit, buildPythonPackage
|
|
, python
|
|
, buildGoModule
|
|
, srht, redis, celery, pyyaml, markdown }:
|
|
|
|
let
|
|
version = "0.56.13";
|
|
|
|
buildWorker = src: buildGoModule {
|
|
inherit src version;
|
|
pname = "builds-sr-ht-worker";
|
|
goPackagePath = "git.sr.ht/~sircmpwn/builds.sr.ht/worker";
|
|
|
|
vendorSha256 = "0prdlihcy5yz760llwyby747yy2981dn3gy401a48df7ndlfj6lp";
|
|
};
|
|
in buildPythonPackage rec {
|
|
inherit version;
|
|
pname = "buildsrht";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
|
|
rev = version;
|
|
sha256 = "0la9i93fxxphi4gf913ccjiqlfn92h3nbpl9gxcwcplm2vvi4nmq";
|
|
};
|
|
|
|
patches = [
|
|
./use-srht-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
redis
|
|
celery
|
|
pyyaml
|
|
markdown
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
mkdir -p $out/bin/builds.sr.ht
|
|
|
|
cp -r images $out/lib
|
|
cp contrib/submit_image_build $out/bin/builds.sr.ht
|
|
cp ${buildWorker "${src}/worker"}/bin/worker $out/bin/builds.sr.ht-worker
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
|
|
description = "Continuous integration service for the sr.ht network";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|