about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/uncrustify
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 18:31:10 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 18:31:10 -0800
commit94616d766fa28f3eb227ce5cf44bcff764cb02cf (patch)
tree5dd52502b69b4b90148d1a80e7e042c9a0502967 /pkgs/development/tools/misc/uncrustify
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar.gz
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar.bz2
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar.lz
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar.xz
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.tar.zst
nixlib-94616d766fa28f3eb227ce5cf44bcff764cb02cf.zip
uncrustify: 0.66 -> 0.66.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify -h` got 0 exit code
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify --help` got 0 exit code
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify -v` and found version 0.66.1
- ran `/nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1/bin/uncrustify --version` and found version 0.66.1
- found 0.66.1 with grep in /nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1
- found 0.66.1 in filename of file in /nix/store/bg2nls3ahz6jd32nxdaax1akz2hjh8ma-uncrustify-0.66.1

cc "@bjornfor"
Diffstat (limited to 'pkgs/development/tools/misc/uncrustify')
-rw-r--r--pkgs/development/tools/misc/uncrustify/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/uncrustify/default.nix b/pkgs/development/tools/misc/uncrustify/default.nix
index 6c27ad408603..3cf707c6bebb 100644
--- a/pkgs/development/tools/misc/uncrustify/default.nix
+++ b/pkgs/development/tools/misc/uncrustify/default.nix
@@ -3,13 +3,13 @@
 stdenv.mkDerivation rec {
   name = "${product}-${version}";
   product = "uncrustify";
-  version = "0.66";
+  version = "0.66.1";
 
   src = fetchFromGitHub {
     owner = product;
     repo = product;
     rev = name;
-    sha256 = "156y71yf2xxskvikbn6yjfv8xgnsrrjij08irv21z0n7nx35jgmm";
+    sha256 = "1y69b0g07ksynf1fwfh5qqwmscxfbvs1yi3n3lbdd4vplb9zakyx";
   };
 
   nativeBuildInputs = [ cmake ];