Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1d41739764af
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a89b6b58881a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 28, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    e4e0981 View commit details
  2. Copy the full SHA
    a89b6b5 View commit details
Showing with 8 additions and 3 deletions.
  1. +8 −3 pkgs/desktops/enlightenment/terminology/default.nix
11 changes: 8 additions & 3 deletions pkgs/desktops/enlightenment/terminology/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, efl, pcre, mesa }:
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, python3, efl, pcre, mesa }:

stdenv.mkDerivation rec {
pname = "terminology";
version = "1.8.1";
version = "1.9.0";

src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
sha256 = "1fxqjf7g30ix4qxi6366rrax27s3maxq43z2vakwnhz4mp49m9h4";
sha256 = "0v74858yvrrfy0l2pq7yn6izvqhpkb9gw2jpd3a3khjwv8kw6frz";
};

nativeBuildInputs = [
meson
ninja
pkg-config
python3
];

buildInputs = [
@@ -25,6 +26,10 @@ stdenv.mkDerivation rec {
"-D edje-cc=${efl}/bin/edje_cc"
];

postPatch = ''
patchShebangs data/colorschemes/*.py
'';

meta = {
description = "Powerful terminal emulator based on EFL";
homepage = "https://www.enlightenment.org/about-terminology";