nixpkgs/pkgs/development/compilers/orc/default.nix
Kranium Gikos Mendoza 0412ee2a6d orc: disable tests on armv7l
also updated bugzilla references to newer gitlab
2019-06-09 23:46:30 +10:00

31 lines
1 KiB
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.28";
src = fetchurl {
url = "https://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
sha256 = "bfcd7c6563b05672386c4eedfc4c0d4a0a12b4b4775b74ec6deb88fc2bcd83ce";
};
outputs = [ "out" "dev" ];
outputBin = "dev"; # compilation tools
postInstall = ''
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
'';
# 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);
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 ];
};
}