about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/uncrustify/default.nix
blob: f4add9a4b9ea2c4951f10aa88450f5f46b880160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "uncrustify";
  version = "0.61";

  src = fetchurl {
    url = "mirror://sourceforge/uncrustify/${name}-${version}.tar.gz";
    sha256 = "1df0e5a2716e256f0a4993db12f23d10195b3030326fdf2e07f8e6421e172df9";
  };

  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;
    platforms = platforms.unix;
    maintainers = [ maintainers.bjornfor ];
  };
}