summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2017-01-01 18:19:14 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2017-01-01 18:19:39 +0100
commit3b754e525fea495e90a9542a41140803214c1fcc (patch)
tree7cb7677d7f558662766383d9ea42f89b541bfee6 /pkgs
parent039e90c9d34ee471f725d22307d4a14893f46597 (diff)
downloadnixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar.gz
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar.bz2
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar.lz
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar.xz
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.tar.zst
nixpkgs-3b754e525fea495e90a9542a41140803214c1fcc.zip
xylib: 1.4 -> 1.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/xylib/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/xylib/default.nix b/pkgs/development/libraries/xylib/default.nix
index 030e2f0857b..c9c84f4e1d8 100644
--- a/pkgs/development/libraries/xylib/default.nix
+++ b/pkgs/development/libraries/xylib/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, boost, zlib, bzip2 }:
+{ stdenv, fetchurl, boost, zlib, bzip2, wxGTK30 }:
 
 stdenv.mkDerivation rec {
   name = "xylib-${version}";
-  version = "1.4";
+  version = "1.5";
 
   src = fetchurl {
-    url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2";
-    sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh";
+    url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}.tar.bz2";
+    sha256 = "1r2kx80zhdvz39k6h2fsncm2742xxvxl3z8a3fnr13jl9sl7mnnd";
   };
 
-  buildInputs = [ boost zlib bzip2 ];
+  buildInputs = [ boost zlib bzip2 wxGTK30 ];
 
   meta = with stdenv.lib; {
     description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";