1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

liborc: init at 0.4.16

This commit is contained in:
Frederik Rietdijk 2016-08-29 10:35:21 +02:00
parent d87b415dec
commit 5da0b34591
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "liborc-${version}";
version = "0.4.16";
src = fetchurl {
url = "http://http.debian.net/debian/pool/main/o/orc/orc_${version}.orig.tar.gz";
sha256 = "1asq58gm87ig60ib4cs69hyqhnsirqkdlidnchhx83halbdlw3kh";
};
meta = with stdenv.lib; {
homepage = https://packages.debian.org/wheezy/liborc-0.4-0;
description = "Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data.";
license = with licenses; [ bsd2 bsd3 ];
};
}

View file

@ -8435,6 +8435,8 @@ in
libopus = callPackage ../development/libraries/libopus { };
liborc = callPackage ../development/libraries/liborc { };
libosinfo = callPackage ../development/libraries/libosinfo {
inherit (gnome3) libsoup;
};