3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/uncrustify/default.nix

27 lines
660 B
Nix
Raw Normal View History

2016-11-18 22:45:35 +00:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "uncrustify";
version = "0.67";
2016-11-18 22:45:35 +00:00
src = fetchFromGitHub {
owner = product;
repo = product;
rev = name;
sha256 = "0hf8c93aj1hjg6cc77x6p7nf7ddp8mn4b6a9gpcrvmx8w81afpd3";
};
2016-11-18 22:45:35 +00:00
nativeBuildInputs = [ cmake ];
2017-11-17 22:50:00 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA";
homepage = http://uncrustify.sourceforge.net/;
license = licenses.gpl2Plus;
2015-04-04 05:55:02 +01:00
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}