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

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

36 lines
972 B
Nix
Raw Normal View History

2021-05-21 18:45:52 +00:00
{ rustPlatform
, lib
, fetchurl
2021-05-21 18:45:52 +00:00
, openssl
, pkg-config
, systemd
}:
rustPlatform.buildRustPackage rec {
pname = "pr-tracker";
2022-03-22 14:39:22 +00:00
version = "1.2.0";
2021-05-21 18:45:52 +00:00
src = fetchurl {
url = "https://git.qyliss.net/pr-tracker/snapshot/pr-tracker-${version}.tar.xz";
2022-03-22 14:39:22 +00:00
sha256 = "sha256-Tru9DsitRQLiO4Ln70J9LvkEqcj2i4A+eArBvIhd/ls=";
2021-05-21 18:45:52 +00:00
};
2022-03-22 14:39:22 +00:00
cargoSha256 = "0q3ibxnzw8gngvrgfkv4m64dr411c511xkvb6j9k63vhy9vwarz7";
2021-05-21 18:45:52 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl systemd ];
meta = with lib; {
changelog = "https://git.qyliss.net/pr-tracker/plain/NEWS?h=${version}";
2021-05-21 18:45:52 +00: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 ];
2021-05-21 18:45:52 +00:00
};
}