summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/tilda/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-04 23:34:35 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-05 08:55:25 -0300
commit6af002bdd8dcf6117f777b588aa6d932467a4c47 (patch)
treef34a7f0c4109406f0ba63575032da7e9fdfcf9cc /pkgs/applications/terminal-emulators/tilda/default.nix
parente2a3c741260f1985224ed0459febd20fec261320 (diff)
downloadnixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar.gz
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar.bz2
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar.lz
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar.xz
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.tar.zst
nixpkgs-6af002bdd8dcf6117f777b588aa6d932467a4c47.zip
tilda: 1.5.2 -> 1.5.4
Diffstat (limited to 'pkgs/applications/terminal-emulators/tilda/default.nix')
-rw-r--r--pkgs/applications/terminal-emulators/tilda/default.nix36
1 files changed, 24 insertions, 12 deletions
diff --git a/pkgs/applications/terminal-emulators/tilda/default.nix b/pkgs/applications/terminal-emulators/tilda/default.nix
index 0a672b039f6..560a47a9cdb 100644
--- a/pkgs/applications/terminal-emulators/tilda/default.nix
+++ b/pkgs/applications/terminal-emulators/tilda/default.nix
@@ -1,23 +1,35 @@
-{ stdenv, fetchFromGitHub, pkgconfig
-, autoreconfHook, gettext, expat, pcre2
-, libconfuse, vte, gtk
-, makeWrapper }:
+{ stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, expat
+, gettext
+, gtk
+, libconfuse
+, pcre2
+, vte
+, makeWrapper
+}:
 
-with stdenv.lib;
 stdenv.mkDerivation rec {
-
   pname = "tilda";
-  version = "1.5.2";
+  version = "1.5.4";
 
   src = fetchFromGitHub {
     owner = "lanoxx";
     repo = "tilda";
     rev = "${pname}-${version}";
-    sha256 = "0psq0f4s0s92bba6wwcf6b0j7i59b76svqxhvpavwv53yvhmmamn";
+    sha256 = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA=";
   };
 
-  nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ];
-  buildInputs = [ gettext pcre2 libconfuse vte gtk ];
+  nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
+  buildInputs = [
+    gettext
+    gtk
+    libconfuse
+    pcre2
+    vte
+  ];
 
   LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
 
@@ -30,10 +42,10 @@ stdenv.mkDerivation rec {
         --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A Gtk based drop down terminal for Linux and Unix";
     homepage = "https://github.com/lanoxx/tilda/";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     maintainers = [ maintainers.AndersonTorres ];
     platforms = platforms.linux;
   };