summary refs log tree commit diff
path: root/pkgs/development/compilers/orc/default.nix
blob: 3f3db48828d4191b1840ddd5e383c0bd416229e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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
  '';

  # 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 = http://code.entropywave.com/orc/;
    # The source code implementing the Marsenne Twister algorithm is licensed
    # under the 3-clause BSD license. The rest is 2-clause BSD license.
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = [ maintainers.fuuzetsu ];
  };
}