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.
70 lines
1.8 KiB
Nix
70 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, python3
|
|
, xmlto
|
|
, docbook-xsl-nons
|
|
, fetchFromGitLab
|
|
, installShellFiles
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deheader";
|
|
version = "1.11";
|
|
outputs = [ "out" "man" ];
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "esr";
|
|
repo = "deheader";
|
|
rev = version;
|
|
hash = "sha256-RaWU6075PvgxbsH1+Lt/CEDAcl9Vx6kxcZAA/A/Af4o=";
|
|
};
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
nativeBuildInputs = [ xmlto docbook-xsl-nons installShellFiles ];
|
|
|
|
# With upstream Makefile, xmlto is called without "--skip-validation". It
|
|
# makes it require a lot of dependencies, yet ultimately it fails
|
|
# nevertheless in attempt to fetch something from SourceForge.
|
|
#
|
|
# Need to set "foundMakefile" so "make check" tests are run.
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
xmlto man --skip-validation deheader.xml
|
|
patchShebangs ./deheader
|
|
foundMakefile=1
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ./deheader -t $out/bin
|
|
installManPage ./deheader.1
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to find and optionally remove unneeded includes in C or C++ source files";
|
|
mainProgram = "deheader";
|
|
longDescription = ''
|
|
This tool takes a list of C or C++ sourcefiles and generates a report
|
|
on which #includes can be omitted from them -- the test, for each foo.c
|
|
or foo.cc or foo.cpp, is simply whether 'rm foo.o; make foo.o' returns a
|
|
zero status. Optionally, with the -r option, the unneeded headers are removed.
|
|
The tool also reports on headers required for strict portability.
|
|
'';
|
|
homepage = "http://catb.org/~esr/deheader";
|
|
changelog = "https://gitlab.com/esr/deheader/-/blob/master/NEWS.adoc";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ kaction ];
|
|
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|