2013-08-11 04:00:45 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-27 17:05:41 +00:00
|
|
|
name = "orc-0.4.28";
|
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";
|
2017-11-27 17:05:41 +00:00
|
|
|
sha256 = "bfcd7c6563b05672386c4eedfc4c0d4a0a12b4b4775b74ec6deb88fc2bcd83ce";
|
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
|
|
|
|
'';
|
|
|
|
|
2017-11-27 17:05:41 +00:00
|
|
|
doCheck = true;
|
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";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://code.entropywave.com/orc/;
|
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.
|
2015-10-03 15:48:44 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.fuuzetsu ];
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
}
|