mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
coprthr: remove package
It's been marked as broken for 5 years
This commit is contained in:
parent
f85826a2ad
commit
fdffba3f86
3 changed files with 1 additions and 40 deletions
|
@ -1,38 +0,0 @@
|
|||
{ stdenv, fetchurl, libelf, libconfig, libevent, which, unzip, perl, python
|
||||
, bison, flex }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "coprthr";
|
||||
version = "1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/browndeer/coprthr/archive/stable-${version}.zip";
|
||||
sha256 = "0ilx4v1ydppjnq1i0z5j0x4lmi29z39sappar7c0wqady0b5dpz9";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ libelf libconfig libevent which unzip perl python bison flex ];
|
||||
|
||||
patchPhase = ''
|
||||
for x in src/libocl/gen_oclcall_hook.pl tools/cltrace/gen_interceptor.pl src/libocl/gen_oclcall.pl src/scripts/gen_ocl_call_vector.pl src/libstdcl/gen_clarg_setn.pl; do
|
||||
substituteInPlace $x --replace "/usr/bin/perl" ${perl}/bin/perl
|
||||
done
|
||||
'';
|
||||
|
||||
configureFlags =
|
||||
[ "--with-libelf=${libelf}"
|
||||
"--with-libevent=${libevent.dev}"
|
||||
"--with-libconfig=${libconfig}"
|
||||
"--with-opencl-icd-path=$out/etc/OpenCL/vendors"
|
||||
"--enable-user-install"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "The CO-PRocessing THReads SDK for OpenCL/STDCL";
|
||||
homepage = "http://www.browndeertechnology.com/coprthr.htm";
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
|
@ -69,6 +69,7 @@ mapAliases ({
|
|||
compton-git = compton; # added 2019-05-20
|
||||
conntrack_tools = conntrack-tools; # added 2018-05
|
||||
cool-old-term = cool-retro-term; # added 2015-01-31
|
||||
coprthr = throw "coprthr has been removed."; # added 2019-12-08
|
||||
corebird = throw "deprecated 2019-10-02: See https://www.patreon.com/posts/corebirds-future-18921328. Please use Cawbird as replacement.";
|
||||
coredumper = throw "coredumper has been removed: Abandoned by upstream."; # added 2019-11-16
|
||||
cpp-gsl = microsoft_gsl; # added 2019-05-24
|
||||
|
|
|
@ -1456,8 +1456,6 @@ in
|
|||
|
||||
contrast = callPackage ../applications/accessibility/contrast { };
|
||||
|
||||
coprthr = callPackage ../development/libraries/coprthr { };
|
||||
|
||||
cplex = callPackage ../applications/science/math/cplex (config.cplex or {});
|
||||
|
||||
cpulimit = callPackage ../tools/misc/cpulimit { };
|
||||
|
|
Loading…
Reference in a new issue