mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
18 lines
393 B
Nix
18 lines
393 B
Nix
{ stdenv, fetchurl, glib, openssl, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sofia-sip-1.12.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sofia-sip/${name}.tar.gz";
|
|
sha256 = "10bwsdfijpbk9ahlfpk94kzdapxiahl9mljpgwghvq1630pbq09b";
|
|
};
|
|
|
|
buildInputs = [ glib openssl ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|