mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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;
|
|
};
|
|
})
|