xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / by-name / un / uncrustify / package.nix
blobf958e1cadfb5be7c10e0c50626b612ab9207b9fc
1 { lib, stdenv, fetchFromGitHub, cmake, python3 }:
3 stdenv.mkDerivation rec {
4   pname = "uncrustify";
5   version = "0.80.0";
7   src = fetchFromGitHub {
8     owner = "uncrustify";
9     repo = "uncrustify";
10     rev = "uncrustify-${version}";
11     sha256 = "sha256-1W4g9ISMVwmc0efa6loFtyqsHNm0kwR+NVKE8eB/jEA=";
12   };
14   nativeBuildInputs = [ cmake python3 ];
16   meta = with lib; {
17     description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA";
18     mainProgram = "uncrustify";
19     homepage = "https://uncrustify.sourceforge.net/";
20     license = licenses.gpl2Plus;
21     platforms = platforms.unix;
22     maintainers = [ maintainers.bjornfor ];
23   };