Skip to content

Commit

Permalink
nvd: 0.2.3 -> 0.2.4, switch source repository to Sourcehut (#345403)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor authored Sep 30, 2024
2 parents 05beb55 + 5dcb4ae commit e1b3444
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/tools/package-management/nvd/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ fetchFromGitLab
{ fetchFromSourcehut
, installShellFiles
, lib
, python3
Expand All @@ -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 = [
Expand All @@ -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 ];
Expand Down

0 comments on commit e1b3444

Please sign in to comment.