2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchurl, meson, ninja
|
2020-10-20 11:51:51 +01:00
|
|
|
, gtk-doc ? null, file, docbook_xsl
|
|
|
|
, buildDevDoc ? gtk-doc != null
|
|
|
|
}: let
|
2021-01-22 11:25:31 +00:00
|
|
|
inherit (lib) optional optionals;
|
2020-10-20 11:51:51 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
pname = "orc";
|
|
|
|
version = "0.4.32";
|
2013-08-11 04:00:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-20 11:51:51 +01:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "1w0qmyj3v9sb2g7ff39pp38b9850y9hyy0bag26ifrby5f7ksvm6";
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
|
2020-10-20 11:51:51 +01:00
|
|
|
outputs = [ "out" "dev" ]
|
|
|
|
++ optional buildDevDoc "devdoc"
|
|
|
|
;
|
2015-10-03 15:48:44 +01:00
|
|
|
outputBin = "dev"; # compilation tools
|
2015-07-26 12:43:49 +01:00
|
|
|
|
2020-10-20 11:51:51 +01:00
|
|
|
mesonFlags =
|
|
|
|
optional (!buildDevDoc) [ "-Dgtk_doc=disabled" ]
|
|
|
|
;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja ]
|
|
|
|
++ optionals buildDevDoc [ gtk-doc file docbook_xsl ]
|
|
|
|
;
|
2015-10-06 12:10:31 +01:00
|
|
|
|
2020-10-20 11:51:51 +01:00
|
|
|
doCheck = true;
|
2014-04-19 11:14:20 +01:00
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2013-08-11 04:00:45 +01:00
|
|
|
description = "The Oil Runtime Compiler";
|
2020-04-01 02:11:51 +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;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = [ ];
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
}
|