nixpkgs/pkgs/development/libraries/sofia-sip/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

14 lines
332 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 ];
}