nixpkgs/pkgs/tools/package-management/nvd/default.nix
Bryan Gardiner 5dcb4ae9fd
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.
2024-09-29 19:00:19 -07:00

43 lines
824 B
Nix

{ fetchFromSourcehut
, installShellFiles
, lib
, python3
, stdenv
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nvd";
version = "0.2.4";
src = fetchFromSourcehut {
owner = "~khumba";
repo = "nvd";
rev = "v${finalAttrs.version}";
hash = "sha256-3Fb6MDz4z41at3XpjLVng8NBwUJn/N7QBgU6Cbh0w98=";
};
buildInputs = [
python3
];
nativeBuildInputs = [
installShellFiles
];
installPhase = ''
runHook preInstall
install -m555 -Dt $out/bin src/nvd
installManPage src/nvd.1
runHook postInstall
'';
meta = {
description = "Nix/NixOS package version diff tool";
homepage = "https://khumba.net/projects/nvd";
license = lib.licenses.asl20;
mainProgram = "nvd";
maintainers = with lib.maintainers; [ khumba ];
platforms = lib.platforms.all;
};
})