nixpkgs/pkgs/desktops/enlightenment/terminology.nix

37 lines
883 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, efl, pcre, curl, makeWrapper }:
2016-08-22 22:44:27 +00:00
stdenv.mkDerivation rec {
name = "terminology-${version}";
2017-09-07 12:00:19 +00:00
version = "1.1.1";
2016-08-22 22:44:27 +00:00
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz";
2017-09-07 12:00:19 +00:00
sha256 = "05ncxvzb9rzkyjvd95hzn8lswqdwr8cix6rd54nqn9559jibh4ns";
};
2016-08-22 22:44:27 +00:00
2017-09-07 12:00:19 +00:00
nativeBuildInputs = [
(pkgconfig.override { vanilla = true; })
makeWrapper
];
2016-08-22 22:44:27 +00:00
2017-09-07 12:00:19 +00:00
buildInputs = [
efl
pcre
curl
];
2016-08-22 22:44:27 +00:00
postInstall = ''
for f in $out/bin/*; do
wrapProgram $f --prefix LD_LIBRARY_PATH : ${curl.out}/lib
done
'';
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 02:02:12 +00:00
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
};
}