nvd: 0.2.3 -> 0.2.4, switch source repository to Sourcehut

nvd will be moving from Gitlab to Sourcehut shortly, and the old
repository will be archived and removed.
This commit is contained in:
Bryan Gardiner 2024-09-21 10:29:11 -07:00
parent a7d1437dc8
commit 5dcb4ae9fd
No known key found for this signature in database
GPG Key ID: 53EFBCA063E6183C

View File

@ -1,4 +1,4 @@
{ fetchFromGitLab
{ fetchFromSourcehut
, installShellFiles
, lib
, python3
@ -7,13 +7,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "nvd";
version = "0.2.3";
version = "0.2.4";
src = fetchFromGitLab {
owner = "khumba";
src = fetchFromSourcehut {
owner = "~khumba";
repo = "nvd";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-TmaXsyJLRkmIN9D77jOXd8fLj7kYPCBLg0AHIImAtgA=";
rev = "v${finalAttrs.version}";
hash = "sha256-3Fb6MDz4z41at3XpjLVng8NBwUJn/N7QBgU6Cbh0w98=";
};
buildInputs = [
@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Nix/NixOS package version diff tool";
homepage = "https://gitlab.com/khumba/nvd";
homepage = "https://khumba.net/projects/nvd";
license = lib.licenses.asl20;
mainProgram = "nvd";
maintainers = with lib.maintainers; [ khumba ];