mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +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.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, autoreconfHook, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.0.1";
|
|
pname = "coan";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/coan2/v${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
|
|
};
|
|
|
|
patches = [
|
|
# fix compile error in configure.ac
|
|
./fix-big-endian-config-check.diff
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook perl ];
|
|
|
|
configureFlags = [ "CXXFLAGS=-std=c++11" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
mv -v $out/share/man/man1/coan.1.{1,gz}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "C preprocessor chainsaw";
|
|
mainProgram = "coan";
|
|
longDescription = ''
|
|
A software engineering tool for analysing preprocessor-based
|
|
configurations of C or C++ source code. Its principal use is to simplify
|
|
a body of source code by eliminating any parts that are redundant with
|
|
respect to a specified configuration. Dead code removal is an
|
|
application of this sort.
|
|
'';
|
|
homepage = "https://coan2.sourceforge.net/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|