2021-01-21 09:00:13 -08:00
|
|
|
{lib, stdenv, fetchurl, zlib, openssl, libre}:
|
2012-09-24 10:02:19 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-15 03:58:49 -08:00
|
|
|
version = "0.6.0";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "librem";
|
2012-09-24 10:02:19 -07:00
|
|
|
src=fetchurl {
|
|
|
|
url = "http://www.creytiv.com/pub/rem-${version}.tar.gz";
|
2018-12-15 03:58:49 -08:00
|
|
|
sha256 = "0b17wma5w9acizk02isk5k83vv47vf1cf9zkmsc1ail677d20xj1";
|
2012-09-24 10:02:19 -07:00
|
|
|
};
|
|
|
|
buildInputs = [zlib openssl libre];
|
|
|
|
makeFlags = [
|
|
|
|
"LIBRE_MK=${libre}/share/re/re.mk"
|
|
|
|
"LIBRE_INC=${libre}/include/re"
|
2021-01-24 01:19:10 -08:00
|
|
|
"PREFIX=$(out)"
|
2012-09-24 12:49:11 -07:00
|
|
|
]
|
2021-01-23 09:15:07 -08:00
|
|
|
++ lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${lib.getDev stdenv.cc.cc}"
|
|
|
|
++ lib.optional (stdenv.cc.libc != null) "SYSROOT=${lib.getDev stdenv.cc.libc}"
|
2012-09-24 12:49:11 -07:00
|
|
|
;
|
2012-09-24 10:02:19 -07:00
|
|
|
meta = {
|
2019-11-17 00:43:55 -08:00
|
|
|
description = " A library for real-time audio and video processing";
|
|
|
|
homepage = "http://www.creytiv.com/rem.html";
|
2021-01-21 09:00:13 -08:00
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
maintainers = with lib.maintainers; [raskin];
|
|
|
|
license = lib.licenses.bsd3;
|
2014-07-01 00:51:36 -07:00
|
|
|
downloadPage = "http://www.creytiv.com/pub/";
|
|
|
|
updateWalker = true;
|
|
|
|
downloadURLRegexp = "/rem-.*[.]tar[.].*";
|
2012-09-24 10:02:19 -07:00
|
|
|
};
|
|
|
|
}
|