lol

libstrophe: 0.8.8 -> 0.9.1

+4 -4
+4 -4
pkgs/development/libraries/libstrophe/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libstrophe-${version}"; 5 - version = "0.8.8"; 5 + version = "0.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "strophe"; 9 9 repo = "libstrophe"; 10 10 rev = version; 11 - sha256 = "1xzyqqf99r0jfd0g3v0zwc68sac6y25v1d4m365zpc14l02midis"; 11 + sha256 = "099iv13c03y1dsn2ngdhfx2cnax0aj2gfh00w55hlzpvmjm8dsml"; 12 12 }; 13 13 14 14 buildInputs = [ automake autoconf openssl expat libtool pkgconfig check ]; ··· 27 27 runs well on both Linux, Unix, and Windows based platforms. 28 28 ''; 29 29 homepage = http://strophe.im/libstrophe/; 30 - license = stdenv.lib.licenses.gpl3; 30 + license = with stdenv.lib.licenses; [gpl3 mit]; 31 31 platforms = stdenv.lib.platforms.linux; 32 - maintainers = [ stdenv.lib.maintainers.devhell ]; 32 + maintainers = with stdenv.lib.maintainers; [devhell flosse]; 33 33 }; 34 34 }