1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

openslp: init at 2.0.0

This commit is contained in:
Thomas Tuegel 2016-01-08 13:12:18 -06:00
parent fa0057be39
commit e44af9ed42
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "openslp-2.0.0";
src = fetchurl {
url = "mirror://sourceforge/openslp/2.0.0/2.0.0/openslp-2.0.0.tar.gz";
sha256 = "16splwmqp0400w56297fkipaq9vlbhv7hapap8z09gp5m2i3fhwj";
};
meta = with stdenv.lib; {
homepage = "http://openslp.org/";
description = "An open-source implementation of the IETF Service Location Protocol";
maintainers = with maintainers; [ ttuegel ];
license = licenses.bsd3;
platforms = platforms.all;
};
}

View file

@ -8003,6 +8003,8 @@ let
ffmpeg = ffmpeg_0;
};
openslp = callPackage ../development/libraries/openslp {};
# 2.3 breaks some backward-compability
libressl = libressl_2_2;
libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix {