tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libstrophe: 0.8.8 -> 0.9.1
Markus Kohlhase
9 years ago
28d6aee3
34cc46bf
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libstrophe
default.nix
+4
-4
pkgs/development/libraries/libstrophe/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "libstrophe-${version}";
5
5
-
version = "0.8.8";
5
5
+
version = "0.9.1";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "strophe";
9
9
repo = "libstrophe";
10
10
rev = version;
11
11
-
sha256 = "1xzyqqf99r0jfd0g3v0zwc68sac6y25v1d4m365zpc14l02midis";
11
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
30
-
license = stdenv.lib.licenses.gpl3;
30
30
+
license = with stdenv.lib.licenses; [gpl3 mit];
31
31
platforms = stdenv.lib.platforms.linux;
32
32
-
maintainers = [ stdenv.lib.maintainers.devhell ];
32
32
+
maintainers = with stdenv.lib.maintainers; [devhell flosse];
33
33
};
34
34
}