mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 02:14:08 +00:00
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
cmake,
|
|
versionCheckHook,
|
|
asLibrary ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "astyle";
|
|
version = "3.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
|
hash = "sha256-HpS2T08GRh+QOdCUrv6dSyjGbTSRayekVgVefWLXNwI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# upstream repo includes a build/ directory
|
|
cmakeBuildDir = "_build";
|
|
|
|
cmakeFlags = lib.optional asLibrary [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
];
|
|
|
|
postInstall = lib.optionalString asLibrary ''
|
|
install -Dm444 ../src/astyle.h $out/include/astyle.h
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = !asLibrary;
|
|
|
|
meta = with lib; {
|
|
description = "Source code indenter, formatter, and beautifier for C, C++, C# and Java";
|
|
mainProgram = "astyle";
|
|
homepage = "https://astyle.sourceforge.net/";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ carlossless ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|