pr-tracker: 1.0.0 -> 1.1.0; adopt; add changelog

This commit is contained in:
Alyssa Ross 2021-06-06 19:48:29 +00:00
parent 79b15cdf49
commit ffb7cfcfad

View file

@ -1,6 +1,6 @@
{ rustPlatform { rustPlatform
, lib , lib
, fetchgit , fetchurl
, openssl , openssl
, pkg-config , pkg-config
, systemd , systemd
@ -8,20 +8,20 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "pr-tracker"; pname = "pr-tracker";
version = "1.0.0"; version = "1.1.0";
src = fetchgit { src = fetchurl {
url = "https://git.qyliss.net/pr-tracker"; url = "https://git.qyliss.net/pr-tracker/snapshot/pr-tracker-${version}.tar.xz";
rev = version; sha256 = "0881ckb4y762isisf9d6xk6fh9207xi1i04kays298zx2dq6gh6h";
sha256 = "sha256-NHtY05Llrvfvcb3uyagLd6kaVW630TIP3IreFrY3wl0=";
}; };
cargoSha256 = "sha256-SgSASfIanADV31pVy+VIwozTLxq7P3oMDIiAAQ8s+k0="; cargoSha256 = "0r8pxg65s5jv95a0g8pzr693za7jfb4rv0wc739lkbpf0dssw8sr";
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl systemd ]; buildInputs = [ openssl systemd ];
meta = with lib; { meta = with lib; {
changelog = "https://git.qyliss.net/pr-tracker/plain/NEWS?h=${version}";
description = "Nixpkgs pull request channel tracker"; description = "Nixpkgs pull request channel tracker";
longDescription = '' longDescription = ''
A web server that displays the path a Nixpkgs pull request will take A web server that displays the path a Nixpkgs pull request will take
@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec {
platforms = platforms.linux; platforms = platforms.linux;
homepage = "https://git.qyliss.net/pr-tracker"; homepage = "https://git.qyliss.net/pr-tracker";
license = licenses.agpl3Plus; license = licenses.agpl3Plus;
maintainers = with maintainers; [ sumnerevans ]; maintainers = with maintainers; [ qyliss sumnerevans ];
}; };
} }