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