nixpkgs/pkgs/applications/version-management/sourcehut/git.nix

79 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, buildPythonPackage
, python
, buildGoModule
2020-04-16 20:49:37 +00:00
, srht, minio, pygit2, scmsrht }:
let
2020-10-11 13:43:09 +00:00
version = "0.61.10";
buildShell = src: buildGoModule {
inherit src version;
2019-12-30 01:03:37 +00:00
pname = "gitsrht-shell";
2020-09-05 23:16:01 +00:00
vendorSha256 = "1abyv2s5l3bs0iylpgyj3jri2hh1iy8fiadxm7g6l2vl58h0b9ba";
};
buildDispatcher = src: buildGoModule {
inherit src version;
2019-12-30 01:03:37 +00:00
pname = "gitsrht-dispatcher";
vendorSha256 = "1lzkf13m54pq0gnn3bcxc80nfg76hgck4l8q8jpaicrsiwgcyrd9";
};
2019-12-30 01:03:37 +00:00
buildKeys = src: buildGoModule {
inherit src version;
pname = "gitsrht-keys";
2020-10-11 13:43:09 +00:00
vendorSha256 = "1d94cqy7x0q0agwg515xxsbl70b3qrzxbzsyjhn1pbyj532brn7f";
2019-12-30 01:03:37 +00:00
};
buildUpdateHook = src: buildGoModule {
inherit src version;
pname = "gitsrht-update-hook";
2020-10-11 13:43:09 +00:00
vendorSha256 = "0fwzqpjv8x5y3w3bfjd0x0cvqjjak23m0zj88hf32jpw49xmjkih";
2019-12-30 01:03:37 +00:00
};
2020-06-23 00:18:41 +00:00
buildAPI = src: buildGoModule {
inherit src version;
pname = "gitsrht-api";
2020-09-05 23:16:01 +00:00
vendorSha256 = "0d6kmsbsgj2q5nddx4w675zbsiarffj9vqplwvqk7dwz4id2wnif";
2020-06-23 00:18:41 +00:00
};
in buildPythonPackage rec {
pname = "gitsrht";
2020-06-23 00:18:41 +00:00
inherit version;
src = fetchgit {
url = "https://git.sr.ht/~sircmpwn/git.sr.ht";
rev = version;
2020-10-11 13:43:09 +00:00
sha256 = "0g7aj5wlns0m3kf2aajqjjb5fwk5vbb8frrkdfp4118235h3xcqy";
};
nativeBuildInputs = srht.nativeBuildInputs;
propagatedBuildInputs = [
srht
2020-04-16 20:49:37 +00:00
minio
pygit2
scmsrht
];
preBuild = ''
export PKGVER=${version}
'';
postInstall = ''
mkdir -p $out/bin
cp ${buildShell "${src}/gitsrht-shell"}/bin/gitsrht-shell $out/bin/gitsrht-shell
cp ${buildDispatcher "${src}/gitsrht-dispatch"}/bin/gitsrht-dispatch $out/bin/gitsrht-dispatch
2019-12-30 01:03:37 +00:00
cp ${buildKeys "${src}/gitsrht-keys"}/bin/gitsrht-keys $out/bin/gitsrht-keys
cp ${buildUpdateHook "${src}/gitsrht-update-hook"}/bin/gitsrht-update-hook $out/bin/gitsrht-update-hook
2020-06-23 00:18:41 +00:00
cp ${buildAPI "${src}/api"}/bin/api $out/bin/gitsrht-api
'';
2021-01-03 05:36:55 +00:00
dontUseSetuptoolsCheck = true;
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 ];
};
}