c3dc58b016
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/orc/versions
30 lines
974 B
Nix
30 lines
974 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "orc-0.4.29";
|
|
|
|
src = fetchurl {
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
|
|
sha256 = "1cisbbn69p9c8vikn0nin14q0zscby5m8cyvzxyw2pjb2kwh32ag";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
outputBin = "dev"; # compilation tools
|
|
|
|
postInstall = ''
|
|
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
|
|
'';
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
|
|
doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Oil Runtime Compiler";
|
|
homepage = https://gstreamer.freedesktop.org/projects/orc.html;
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
|
license = with licenses; [ bsd3 bsd2 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.fuuzetsu ];
|
|
};
|
|
}
|