mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
5dcb4ae9fd
nvd will be moving from Gitlab to Sourcehut shortly, and the old repository will be archived and removed.
43 lines
824 B
Nix
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;
|
|
};
|
|
})
|