2019-11-27 20:38:17 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, python }:
|
2013-08-31 09:42:20 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-14 17:18:17 +02:00
|
|
|
name = "${product}-${version}";
|
|
|
|
product = "uncrustify";
|
2020-05-24 13:03:25 +00:00
|
|
|
version = "0.71.0";
|
2013-08-31 09:42:20 +02:00
|
|
|
|
2016-11-18 20:45:35 -02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = product;
|
|
|
|
repo = product;
|
|
|
|
rev = name;
|
2020-05-24 13:03:25 +00:00
|
|
|
sha256 = "1wyhkhn000yad94fnjj61h7lyvan6hig8wh7jxlnyp5wxdwki0pj";
|
2013-08-31 09:42:20 +02:00
|
|
|
};
|
|
|
|
|
2019-11-27 20:38:17 +01:00
|
|
|
nativeBuildInputs = [ cmake python ];
|
2016-11-18 20:45:35 -02:00
|
|
|
|
2017-11-17 22:50:00 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-08-31 09:42:20 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://uncrustify.sourceforge.net/";
|
2013-08-31 09:42:20 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-04 00:55:02 -04:00
|
|
|
platforms = platforms.unix;
|
2013-08-31 09:42:20 +02:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|