mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
orc: bugfix update (mainly memory leaks), doCheck
This commit is contained in:
parent
060a3da168
commit
c8f633564e
1 changed files with 5 additions and 3 deletions
|
@ -1,13 +1,15 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "orc-0.4.18";
|
||||
name = "orc-0.4.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://code.entropywave.com/download/orc/${name}.tar.gz";
|
||||
sha256 = "093a7a495bsy3j6i4wxaxqbqxk6hwg2hdhgvvkabwhlz4nkwilrl";
|
||||
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.gz";
|
||||
sha256 = "17mmgwll2waz44m908lcxc5fd6n44yysh7p4pdw33hr138r507z2";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "The Oil Runtime Compiler";
|
||||
homepage = "http://code.entropywave.com/orc/";
|
||||
|
|
Loading…
Reference in a new issue