summary refs log tree commit diff
path: root/pkgs/development/libraries/swiften
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-22 22:36:20 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-22 22:36:20 -0700
commita252f83fdbc548fe2dfe67e258ea2ea0cb58af07 (patch)
tree30fcc3e8bf11eb66c0fd61033fe786b3aa29b5d0 /pkgs/development/libraries/swiften
parent40aabe9d483001762bd1a28d494df1d1f871c642 (diff)
downloadnixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar.gz
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar.bz2
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar.lz
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar.xz
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.tar.zst
nixpkgs-a252f83fdbc548fe2dfe67e258ea2ea0cb58af07.zip
swiften: 3.0beta2 -> 4.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

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

These checks were done:

- built on NixOS
- ran `/nix/store/pfiq18ki0dzdd0zsbvv04sppr4f28fl5-swiften-4.0/bin/swiften-config -h` got 0 exit code
- ran `/nix/store/pfiq18ki0dzdd0zsbvv04sppr4f28fl5-swiften-4.0/bin/swiften-config --help` got 0 exit code
- ran `/nix/store/pfiq18ki0dzdd0zsbvv04sppr4f28fl5-swiften-4.0/bin/swiften-config help` got 0 exit code
- ran `/nix/store/pfiq18ki0dzdd0zsbvv04sppr4f28fl5-swiften-4.0/bin/swiften-config --version` and found version 4.0
- found 4.0 with grep in /nix/store/pfiq18ki0dzdd0zsbvv04sppr4f28fl5-swiften-4.0
- directory tree listing: https://gist.github.com/bf18dc85d27b684315737f90db4a6b64
Diffstat (limited to 'pkgs/development/libraries/swiften')
-rw-r--r--pkgs/development/libraries/swiften/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix
index e6fb5a2b685..272967fcb99 100644
--- a/pkgs/development/libraries/swiften/default.nix
+++ b/pkgs/development/libraries/swiften/default.nix
@@ -1,14 +1,14 @@
 { stdenv, python, fetchurl, openssl, boost }:
 stdenv.mkDerivation rec {
   name    = "swiften-${version}";
-  version = "3.0beta2";
+  version = "4.0";
 
   buildInputs           = [ python ];
   propagatedBuildInputs = [ openssl boost ];
 
   src = fetchurl {
     url    = "http://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
-    sha256 = "0i6ks122rry9wvg6qahk3yiggi7nlkpgws1z0r41vi4i1siq0ls0";
+    sha256 = "06bk45hxqmny8z7x78ycrfrazq6xdzv5c28i8x0lgc85j03b5dsh";
   };
   
   buildPhase = ''