2013-08-11 04:00:45 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-01 18:35:52 +01:00
|
|
|
name = "orc-0.4.29";
|
2013-08-11 04:00:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-16 20:28:31 +01:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
|
2019-05-01 18:35:52 +01:00
|
|
|
sha256 = "1cisbbn69p9c8vikn0nin14q0zscby5m8cyvzxyw2pjb2kwh32ag";
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-03 15:48:44 +01:00
|
|
|
outputBin = "dev"; # compilation tools
|
2015-07-26 12:43:49 +01:00
|
|
|
|
2015-10-06 12:10:31 +01:00
|
|
|
postInstall = ''
|
|
|
|
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
|
|
|
|
'';
|
|
|
|
|
2019-06-09 14:46:30 +01:00
|
|
|
# i686 https://gitlab.freedesktop.org/gstreamer/orc/issues/18
|
|
|
|
# armv7l https://gitlab.freedesktop.org/gstreamer/orc/issues/9
|
|
|
|
doCheck = (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch32);
|
2014-04-19 11:14:20 +01:00
|
|
|
|
2015-10-03 15:48:44 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-08-11 04:00:45 +01:00
|
|
|
description = "The Oil Runtime Compiler";
|
2018-09-02 00:07:45 +01:00
|
|
|
homepage = https://gstreamer.freedesktop.org/projects/orc.html;
|
2013-08-11 13:50:55 +01:00
|
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
2018-09-02 00:07:45 +01:00
|
|
|
license = with licenses; [ bsd3 bsd2 ];
|
2015-10-03 15:48:44 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.fuuzetsu ];
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
}
|