2013-08-11 03:00:45 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-27 17:05:41 +00:00
|
|
|
name = "orc-0.4.28";
|
2013-08-11 03:00:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-16 19:28:31 +00:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
|
2017-11-27 17:05:41 +00:00
|
|
|
sha256 = "bfcd7c6563b05672386c4eedfc4c0d4a0a12b4b4775b74ec6deb88fc2bcd83ce";
|
2013-08-11 03:00:45 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-03 14:48:44 +00:00
|
|
|
outputBin = "dev"; # compilation tools
|
2015-07-26 11:43:49 +00:00
|
|
|
|
2015-10-06 11:10:31 +00:00
|
|
|
postInstall = ''
|
|
|
|
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
|
|
|
|
'';
|
|
|
|
|
2017-12-01 06:49:25 +00:00
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
|
2018-08-20 19:11:29 +00:00
|
|
|
doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
|
2014-04-19 10:14:20 +00:00
|
|
|
|
2015-10-03 14:48:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-08-11 03:00:45 +00:00
|
|
|
description = "The Oil Runtime Compiler";
|
2018-09-01 23:07:45 +00:00
|
|
|
homepage = https://gstreamer.freedesktop.org/projects/orc.html;
|
2013-08-11 12:50:55 +00: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-01 23:07:45 +00:00
|
|
|
license = with licenses; [ bsd3 bsd2 ];
|
2015-10-03 14:48:44 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.fuuzetsu ];
|
2013-08-11 03:00:45 +00:00
|
|
|
};
|
|
|
|
}
|