Skip to content

Commit

Permalink
nvd: switch source repository to Sourcehut
Browse files Browse the repository at this point in the history
nvd will be moving from Gitlab to Sourcehut shortly, and the old
repository will be archived and removed, before NixOS 24.05 is
out of support.
  • Loading branch information
khumba committed Sep 30, 2024
1 parent e91cee8 commit 488841f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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 @@ -9,10 +9,10 @@ stdenv.mkDerivation (finalAttrs: {
pname = "nvd";
version = "0.2.3";

src = fetchFromGitLab {
owner = "khumba";
src = fetchFromSourcehut {
owner = "~khumba";
repo = "nvd";
rev = "refs/tags/v${finalAttrs.version}";
rev = "v${finalAttrs.version}";
hash = "sha256-TmaXsyJLRkmIN9D77jOXd8fLj7kYPCBLg0AHIImAtgA=";
};

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 488841f

Please sign in to comment.