a2ca6ef26f
builds-sr-ht: init at 0.45.13 dispatch-sr-ht: init at 0.11.0 git-sr-ht: init at 0.32.3 hg-sr-ht: init at 0.13.0 lists-sr-ht: init at 0.36.3 man-sr-ht: init at 0.12.4 meta-sr-ht: init at 0.34.3 paste-sr-ht: init at 0.5.1 todo-sr-ht: init at 0.46.8
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ stdenv, fetchgit, buildPythonPackage
|
|
, python
|
|
, buildGoModule
|
|
, srht, pygit2, scmsrht }:
|
|
|
|
let
|
|
version = "0.32.3";
|
|
|
|
buildDispatcher = src: buildGoModule {
|
|
inherit src version;
|
|
pname = "git-sr-ht-dispatcher";
|
|
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;
|
|
sha256 = "0grycmblhm9dnhcf1kcmn6bclgb9znahk2026dan58m9j9pja5vw";
|
|
};
|
|
|
|
patches = [
|
|
./use-srht-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
pygit2
|
|
scmsrht
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
# TODO: Remove redundant mkdir?
|
|
postInstall = ''
|
|
mkdir -p $out/bin
|
|
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 ];
|
|
};
|
|
}
|