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

21 lines
588 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "uncrustify";
2016-05-22 19:04:26 +02:00
version = "0.63";
src = fetchurl {
url = "mirror://sourceforge/uncrustify/${product}-${version}.tar.gz";
2016-05-22 19:04:26 +02:00
sha256 = "1qravjzmips3m7asbsd0qllmprrl1rshjlmnfq68w84d38sb3yyz";
};
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 06:55:02 +02:00
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}