nvd/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {}
, silenceWarning ? false
}:
2021-04-10 18:10:20 +02:00
let
inherit (pkgs) lib nix-gitignore python3 stdenv;
warning =
"This is a development build of nvd from git master.\n"
+ "On or around Oct 19, 2024, nvd will be moving to Sourcehut.\n"
+ "Please consider using the latest stable nvd release from nixpkgs,\n"
+ "but if you wish to continue pulling the latest unstable pre-release\n"
+ "code, you will need to update your URLs (and can do so now).\n"
+ "See the following link for more info, thanks.\n\n"
+ "https://gitlab.com/khumba/nvd/-/issues/19";
warn = if silenceWarning then lib.id else lib.warn warning;
2021-04-10 18:10:20 +02:00
in
warn (
2021-04-10 06:05:12 +02:00
stdenv.mkDerivation {
2021-04-10 18:10:20 +02:00
pname = "nvd";
2023-05-22 20:47:24 +02:00
version = "0.2.4";
2021-04-10 06:05:12 +02:00
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
buildInputs = [ python3 ];
buildPhase = ''
runHook preBuild
gzip nvd.1
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -m555 -Dt $out/bin nvd
install -m444 -Dt $out/share/man/man1 nvd.1.gz
runHook postInstall
'';
2021-04-10 18:10:20 +02:00
meta = {
description = "Nix/NixOS package version diff tool";
homepage = "https://gitlab.com/khumba/nvd";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.khumba ];
platforms = lib.platforms.all;
};
2021-04-10 06:05:12 +02:00
}
)