about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2019-11-27 20:38:17 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2019-11-27 20:50:04 +0100
commitb34564981104e68984078d548632bb4182d1abe8 (patch)
treeeabfb678ddf0bbf2859fe39887580fd41e3f7480
parent8ef9f8b893a6ee4fe2b2717a5d5a5a13a71f39f0 (diff)
downloadnixlib-b34564981104e68984078d548632bb4182d1abe8.tar
nixlib-b34564981104e68984078d548632bb4182d1abe8.tar.gz
nixlib-b34564981104e68984078d548632bb4182d1abe8.tar.bz2
nixlib-b34564981104e68984078d548632bb4182d1abe8.tar.lz
nixlib-b34564981104e68984078d548632bb4182d1abe8.tar.xz
nixlib-b34564981104e68984078d548632bb4182d1abe8.tar.zst
nixlib-b34564981104e68984078d548632bb4182d1abe8.zip
uncrustify: 0.67 -> 0.70.1
It depends on python now (only build time).
-rw-r--r--pkgs/development/tools/misc/uncrustify/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/uncrustify/default.nix b/pkgs/development/tools/misc/uncrustify/default.nix
index d85cd1a82164..01ed66030188 100644
--- a/pkgs/development/tools/misc/uncrustify/default.nix
+++ b/pkgs/development/tools/misc/uncrustify/default.nix
@@ -1,18 +1,18 @@
-{ stdenv, fetchFromGitHub, cmake }:
+{ stdenv, fetchFromGitHub, cmake, python }:
 
 stdenv.mkDerivation rec {
   name = "${product}-${version}";
   product = "uncrustify";
-  version = "0.67";
+  version = "0.70.1";
 
   src = fetchFromGitHub {
     owner = product;
     repo = product;
     rev = name;
-    sha256 = "0hf8c93aj1hjg6cc77x6p7nf7ddp8mn4b6a9gpcrvmx8w81afpd3";
+    sha256 = "0zr3vxhd947zdvwccw3cj0vsriaawcpfjq3x94v9887hsi8fk87b";
   };
 
-  nativeBuildInputs = [ cmake ];
+  nativeBuildInputs = [ cmake python ];
 
   enableParallelBuilding = true;