sourcehut.mansrht: 0.16.1 -> 0.16.3
Also refactor it to the same common structure as all other sourcehut packages, thus opening the possibility to even further simplify this in the future. Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
parent
bbdc0e9c2e
commit
d9f7fe2d78
@ -11,30 +11,34 @@
|
|||||||
, setuptools
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
let
|
||||||
pname = "mansrht";
|
version = "0.16.3";
|
||||||
version = "0.16.1";
|
gqlgen = import ./fix-gqlgen-trimpath.nix { inherit unzip; gqlgenVersion = "0.17.36"; };
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
|
||||||
|
|
||||||
src = fetchFromSourcehut {
|
src = fetchFromSourcehut {
|
||||||
owner = "~sircmpwn";
|
owner = "~sircmpwn";
|
||||||
repo = "man.sr.ht";
|
repo = "man.sr.ht";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-94G9/Kzt1gaQ2CaXtsJYCB6W5OTdn27XhVdpNJ9a5cE=";
|
hash = "sha256-o1A3LmwH6WgpFqjKyL3UTru9q7TgKdOdbKZfJHR6fCA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace Makefile --replace "all: api" ""
|
|
||||||
'';
|
|
||||||
|
|
||||||
mansrht-api = buildGoModule ({
|
mansrht-api = buildGoModule ({
|
||||||
inherit src version;
|
inherit src version;
|
||||||
pname = "mansrht-api";
|
pname = "mansrht-api";
|
||||||
modRoot = "api";
|
modRoot = "api";
|
||||||
vendorHash = "sha256-K5EmZ4U+xItTR85+SCwhwg5KUGLkKHo9Nr2pkvmJpfo=";
|
vendorHash = "sha256-6AzKWytdyuofCFaDEdeO24mv1mtpnQEJydrjVWGY2eU=";
|
||||||
} // import ./fix-gqlgen-trimpath.nix { inherit unzip; });
|
} // gqlgen);
|
||||||
|
in
|
||||||
|
buildPythonPackage rec {
|
||||||
|
inherit src version;
|
||||||
|
pname = "mansrht";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Makefile --replace "all: api" ""
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pip
|
pip
|
||||||
|
Loading…
Reference in New Issue
Block a user