nixpkgs/pkgs/servers/pr-tracker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
999 B
Nix
Raw Normal View History

2021-05-21 20:45:52 +02:00
{ rustPlatform
, lib
, fetchzip
2021-05-21 20:45:52 +02:00
, openssl
, pkg-config
, systemd
}:
rustPlatform.buildRustPackage rec {
pname = "pr-tracker";
2023-11-18 14:10:34 +01:00
version = "1.4.0";
2021-05-21 20:45:52 +02:00
src = fetchzip {
url = "https://git.qyliss.net/pr-tracker/snapshot/pr-tracker-${version}.tar.xz";
2023-11-18 14:10:34 +01:00
hash = "sha256-pCT74nAbtULvyS2BQ+XQU3LzF/q05wLaEeSa9j3DoAo=";
2021-05-21 20:45:52 +02:00
};
2023-11-18 14:10:34 +01:00
cargoHash = "sha256-WFI7eyr7fdQ6ePXQ+n/VrtPQ2eMZpVR68nGRBBlq3JU=";
2021-05-21 20:45:52 +02:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl systemd ];
meta = with lib; {
changelog = "https://git.qyliss.net/pr-tracker/plain/NEWS?h=${version}";
2021-05-21 20:45:52 +02:00
description = "Nixpkgs pull request channel tracker";
longDescription = ''
A web server that displays the path a Nixpkgs pull request will take
through the various release channels.
'';
platforms = platforms.linux;
homepage = "https://git.qyliss.net/pr-tracker";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ qyliss sumnerevans ];
2023-11-23 22:09:35 +01:00
mainProgram = "pr-tracker";
2021-05-21 20:45:52 +02:00
};
}