2017-08-22 20:54:56 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, efl, pcre, curl, makeWrapper }:
|
2016-08-23 00:44:27 +02:00
|
|
|
|
2014-09-15 21:54:02 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "terminology-${version}";
|
2017-08-22 20:13:17 +02:00
|
|
|
version = "1.1.0";
|
2016-08-23 00:44:27 +02:00
|
|
|
|
2014-09-15 21:54:02 +02:00
|
|
|
src = fetchurl {
|
2016-01-23 23:04:22 +01:00
|
|
|
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz";
|
2017-08-22 20:13:17 +02:00
|
|
|
sha256 = "13rl1k22yf8qrpzdm5nh6ij641fibadr2ww1r7rnz7mbhzj3d4gb";
|
2014-09-15 21:54:02 +02:00
|
|
|
};
|
2016-08-23 00:44:27 +02:00
|
|
|
|
2017-08-22 20:54:56 +02:00
|
|
|
nativeBuildInputs = [ (pkgconfig.override { vanilla = true; }) makeWrapper ];
|
2016-08-23 00:44:27 +02:00
|
|
|
|
2017-08-22 20:54:56 +02:00
|
|
|
buildInputs = [ efl pcre curl ];
|
2016-08-23 00:44:27 +02:00
|
|
|
|
2017-05-01 23:34:53 +02:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/bin/*; do
|
|
|
|
wrapProgram $f --prefix LD_LIBRARY_PATH : ${curl.out}/lib
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2014-09-15 21:54:02 +02:00
|
|
|
meta = {
|
|
|
|
description = "The best terminal emulator written with the EFL";
|
|
|
|
homepage = http://enlightenment.org/;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2017-01-25 03:02:12 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
2014-09-15 21:54:02 +02:00
|
|
|
};
|
|
|
|
}
|