mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
33 lines
878 B
Nix
33 lines
878 B
Nix
{ stdenv, fetchurl, pkgconfig, efl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "terminology-${version}";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz";
|
|
sha256 = "1x4j2q4qqj10ckbka0zaq2r2zm66ff1x791kp8slv1ff7fw45vdz";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ efl ];
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
"-I${efl}/include/ecore-con-1"
|
|
"-I${efl}/include/eldbus-1"
|
|
"-I${efl}/include/elocation-1"
|
|
"-I${efl}/include/emile-1"
|
|
"-I${efl}/include/eo-1"
|
|
"-I${efl}/include/ethumb-1"
|
|
];
|
|
|
|
meta = {
|
|
description = "The best terminal emulator written with the EFL";
|
|
homepage = http://enlightenment.org/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
|
};
|
|
}
|