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