lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

uncrustify: 0.63 -> 0.64

romildo cc9466a6 57260d4c

+9 -5
+9 -5
pkgs/development/tools/misc/uncrustify/default.nix
··· 1 - { stdenv, fetchurl }: 1 + { stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "${product}-${version}"; 5 5 product = "uncrustify"; 6 - version = "0.63"; 6 + version = "0.64"; 7 7 8 - src = fetchurl { 9 - url = "mirror://sourceforge/uncrustify/${product}-${version}.tar.gz"; 10 - sha256 = "1qravjzmips3m7asbsd0qllmprrl1rshjlmnfq68w84d38sb3yyz"; 8 + src = fetchFromGitHub { 9 + owner = product; 10 + repo = product; 11 + rev = name; 12 + sha256 = "0gvgv44aqrh7cmj4ji8dpbhp47cklvajlc3s9d9z24x96dhp2v97"; 11 13 }; 14 + 15 + nativeBuildInputs = [ cmake ]; 12 16 13 17 meta = with stdenv.lib; { 14 18 description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA";