forked from mirrors/nixpkgs
40 lines
836 B
Nix
40 lines
836 B
Nix
{ stdenv, fetchhg, buildPythonPackage
|
|
, python
|
|
, srht, hglib, scmsrht, unidiff }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hgsrht";
|
|
version = "0.15.2";
|
|
|
|
src = fetchhg {
|
|
url = "https://hg.sr.ht/~sircmpwn/hg.sr.ht";
|
|
rev = version;
|
|
sha256 = "097ikrr8bks4lag1lbaznj0zr1c56lmm5lgm5rfjq0k20l7n2bk0";
|
|
};
|
|
|
|
patches = [
|
|
./use-srht-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
hglib
|
|
scmsrht
|
|
unidiff
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://git.sr.ht/~sircmpwn/hg.sr.ht;
|
|
description = "Mercurial repository hosting service for the sr.ht network";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|