summary refs log tree commit diff
path: root/pkgs/development/libraries/grantlee
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-18 13:48:33 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-18 22:48:33 +0200
commit034b1bd1f9a38348ef7554fe4315bea8816a5f9a (patch)
tree6bab7518dbbbf36b5e3a6cef65b0460c9b4b46b8 /pkgs/development/libraries/grantlee
parentd412c2972ce745d50a7ef67b1f00aed107dc6fc1 (diff)
downloadnixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar.gz
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar.bz2
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar.lz
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar.xz
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.tar.zst
nixpkgs-034b1bd1f9a38348ef7554fe4315bea8816a5f9a.zip
grantlee: 0.4.0 -> 0.5.1 (#42012)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/grantlee/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.5.1 with grep in /nix/store/6g40ly4agw1h9kvb3cl6yf0g3swi95fc-grantlee-0.5.1
- directory tree listing: https://gist.github.com/e74be5a3f1cab3f4f9f9a56612731410
- du listing: https://gist.github.com/6e697a1e258b3e9e42c164a437f319f2
Diffstat (limited to 'pkgs/development/libraries/grantlee')
-rw-r--r--pkgs/development/libraries/grantlee/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/grantlee/default.nix b/pkgs/development/libraries/grantlee/default.nix
index 3944d2ecab6..9dde67b5c79 100644
--- a/pkgs/development/libraries/grantlee/default.nix
+++ b/pkgs/development/libraries/grantlee/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, qt4, cmake }:
 
 stdenv.mkDerivation rec {
-  name = "grantlee-0.4.0";
+  name = "grantlee-0.5.1";
 
 # Upstream download server has country code firewall, so I made a mirror.
   src = fetchurl {
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
       "http://downloads.grantlee.org/${name}.tar.gz"
       "http://www.loegria.net/grantlee/${name}.tar.gz"
     ];
-    sha256 = "0gqdckxx45qmyixyz5d7ipcqq2dw26r71m2fpsrlnh4j2c9di8hk";
+    sha256 = "1b501xbimizmbmysl1j5zgnp48qw0r2r7lhgmxvzhzlv9jzhj60r";
   };
 
   buildInputs = [ cmake qt4 ];