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