36 lines
973 B
Nix
36 lines
973 B
Nix
{ rustPlatform
|
|
, lib
|
|
, fetchurl
|
|
, openssl
|
|
, pkg-config
|
|
, systemd
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pr-tracker";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.qyliss.net/pr-tracker/snapshot/pr-tracker-${version}.tar.xz";
|
|
sha256 = "0881ckb4y762isisf9d6xk6fh9207xi1i04kays298zx2dq6gh6h";
|
|
};
|
|
|
|
cargoSha256 = "0r8pxg65s5jv95a0g8pzr693za7jfb4rv0wc739lkbpf0dssw8sr";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl systemd ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://git.qyliss.net/pr-tracker/plain/NEWS?h=${version}";
|
|
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 ];
|
|
};
|
|
}
|