2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, lib, fetchurl, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "astyle";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "3.4.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-02 11:29:13 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
hash = "sha256-b2fshytDe9PFHg914RLk2/2ybV+3vZz4pIDxCvVVcGM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Source code indenter, formatter, and beautifier for C, C++, C# and Java";
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://astyle.sourceforge.net/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.lgpl3;
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ carlossless ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|