Merge pull request #20537 from romildo/upd.uncrustify

uncrustify: 0.63 -> 0.64
This commit is contained in:
Joachim F 2016-11-19 03:03:29 +01:00 committed by GitHub
commit 3dd936aa56

View File

@ -1,15 +1,19 @@
{ stdenv, fetchurl }: { stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${product}-${version}"; name = "${product}-${version}";
product = "uncrustify"; product = "uncrustify";
version = "0.63"; version = "0.64";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/uncrustify/${product}-${version}.tar.gz"; owner = product;
sha256 = "1qravjzmips3m7asbsd0qllmprrl1rshjlmnfq68w84d38sb3yyz"; repo = product;
rev = name;
sha256 = "0gvgv44aqrh7cmj4ji8dpbhp47cklvajlc3s9d9z24x96dhp2v97";
}; };
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA"; description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA";
homepage = http://uncrustify.sourceforge.net/; homepage = http://uncrustify.sourceforge.net/;