nixpkgs/pkgs/development/tools/misc/uncrustify/default.nix

27 lines
677 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, python }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "uncrustify";
version = "0.70.1";
2016-11-18 22:45:35 +00:00
src = fetchFromGitHub {
owner = product;
repo = product;
rev = name;
sha256 = "0zr3vxhd947zdvwccw3cj0vsriaawcpfjq3x94v9887hsi8fk87b";
};
nativeBuildInputs = [ cmake python ];
2016-11-18 22:45:35 +00:00
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 ];
};
}