2019-01-22 03:01:52 +01:00
|
|
|
{ stdenv, fetchgit, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, buildGoModule
|
|
|
|
, srht, redis, celery, pyyaml, markdown }:
|
|
|
|
|
|
|
|
let
|
2020-06-23 01:50:10 +02:00
|
|
|
version = "0.62.6";
|
2019-01-22 03:01:52 +01:00
|
|
|
|
|
|
|
buildWorker = src: buildGoModule {
|
|
|
|
inherit src version;
|
|
|
|
pname = "builds-sr-ht-worker";
|
|
|
|
|
2020-06-23 02:08:49 +02:00
|
|
|
vendorSha256 = "1sbcjp93gb0c4p7dd1gjhmhwr1pygxvrrzp954j2fvxvi38w6571";
|
2019-01-22 03:01:52 +01:00
|
|
|
};
|
|
|
|
in buildPythonPackage rec {
|
|
|
|
inherit version;
|
|
|
|
pname = "buildsrht";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
|
|
|
|
rev = version;
|
2020-06-23 01:50:10 +02:00
|
|
|
sha256 = "1vSUcqYyOitfGaSZVOj5vkmoiAvQbTHgiDVSV5qJLyQ=";
|
2019-01-22 03:01:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
redis
|
|
|
|
celery
|
|
|
|
pyyaml
|
|
|
|
markdown
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
|
|
|
'';
|
|
|
|
|
|
|
|
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; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
|
2019-01-22 03:01:52 +01:00
|
|
|
description = "Continuous integration service for the sr.ht network";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|