summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 18:21:06 -0800
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-02-28 20:33:39 +0000
commit75072efb4bd0b6302fb854af878ecaf375e8f6cf (patch)
tree55cad084e087834d64d008c9af8bd3da8df3d8ef
parent8681d46aa12d7f206e96a8f7744ef786a732df6b (diff)
downloadnixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar.gz
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar.bz2
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar.lz
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar.xz
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.tar.zst
nixlib-75072efb4bd0b6302fb854af878ecaf375e8f6cf.zip
tulip: 4.9.0 -> 5.1.0
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/z17wdp6l55y3b18875c9zj2pw1lywrqd-tulip-5.1.0/bin/tulip-config -h` got 0 exit code
- ran `/nix/store/z17wdp6l55y3b18875c9zj2pw1lywrqd-tulip-5.1.0/bin/tulip-config --help` got 0 exit code
- ran `/nix/store/z17wdp6l55y3b18875c9zj2pw1lywrqd-tulip-5.1.0/bin/tulip-config help` got 0 exit code
- ran `/nix/store/z17wdp6l55y3b18875c9zj2pw1lywrqd-tulip-5.1.0/bin/tulip-config --version` and found version 5.1.0
- found 5.1.0 with grep in /nix/store/z17wdp6l55y3b18875c9zj2pw1lywrqd-tulip-5.1.0

cc ""
-rw-r--r--pkgs/applications/science/misc/tulip/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/misc/tulip/default.nix b/pkgs/applications/science/misc/tulip/default.nix
index 9b8035fcefe7..af58aaafc9c9 100644
--- a/pkgs/applications/science/misc/tulip/default.nix
+++ b/pkgs/applications/science/misc/tulip/default.nix
@@ -1,13 +1,13 @@
 { fetchurl, stdenv, libxml2, freetype, mesa, glew, qt4
 , cmake, makeWrapper, libjpeg, python }:
 
-let version = "4.9.0"; in
+let version = "5.1.0"; in
 stdenv.mkDerivation rec {
   name = "tulip-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/auber/${name}_src.tar.gz";
-    sha256 = "0phc7972brvm0v6lfk4ghq9b2b4jsj6c15xlbgnvhhcxhc99wba3";
+    sha256 = "1i70y8b39gkpxfalr9844pa3l4bnnyw5y7ngxdqibil96k2b9q9h";
   };
 
   buildInputs = [ libxml2 freetype glew mesa qt4 libjpeg python ];