2019-01-22 03:01:52 +01:00
|
|
|
{ stdenv, fetchgit, buildPythonPackage
|
|
|
|
, python
|
|
|
|
, buildGoModule
|
|
|
|
, srht, pygit2, scmsrht }:
|
|
|
|
|
|
|
|
let
|
2019-12-30 01:40:45 +01:00
|
|
|
version = "0.43.3";
|
2019-01-22 03:01:52 +01:00
|
|
|
|
2019-11-04 03:20:02 +01:00
|
|
|
buildShell = src: buildGoModule {
|
|
|
|
inherit src version;
|
|
|
|
pname = "git-srht-shell";
|
|
|
|
goPackagePath = "git.sr.ht/~sircmpwn/git.sr.ht/gitsrht-shell";
|
|
|
|
|
|
|
|
modSha256 = "1v4npijqgv09ssrxf1y1b3syb2fs7smy7k9rcj3ynsfrn9xgfd9y";
|
|
|
|
};
|
|
|
|
|
2019-01-22 03:01:52 +01:00
|
|
|
buildDispatcher = src: buildGoModule {
|
|
|
|
inherit src version;
|
2019-11-04 03:20:02 +01:00
|
|
|
pname = "git-srht-dispatcher";
|
2019-01-22 03:01:52 +01:00
|
|
|
goPackagePath = "git.sr.ht/~sircmpwn/git.sr.ht/gitsrht-dispatch";
|
|
|
|
|
|
|
|
modSha256 = "1lmgmlin460g09dph2hw6yz25d4agqwjhrjv0qqsis7df9qpf3i1";
|
|
|
|
};
|
|
|
|
in buildPythonPackage rec {
|
|
|
|
inherit version;
|
|
|
|
pname = "gitsrht";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/git.sr.ht";
|
|
|
|
rev = version;
|
2019-12-30 01:40:45 +01:00
|
|
|
sha256 = "1f9wfyri85bq4zi9xkbfcfb69q4abh0hz7p3lghj460hh9zxc57w";
|
2019-01-22 03:01:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./use-srht-path.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
pygit2
|
|
|
|
scmsrht
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
|
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/bin
|
2019-11-04 03:20:02 +01:00
|
|
|
cp ${buildShell "${src}/gitsrht-shell"}/bin/gitsrht-shell $out/bin/gitsrht-shell
|
2019-01-22 03:01:52 +01:00
|
|
|
cp ${buildDispatcher "${src}/gitsrht-dispatch"}/bin/gitsrht-dispatch $out/bin/gitsrht-dispatch
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://git.sr.ht/~sircmpwn/git.sr.ht;
|
|
|
|
description = "Git repository hosting service for the sr.ht network";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|