evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ty / tym / package.nix
blob562e06176130cf35af2e11538ee6dbe4af1ab193
1 { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, gtk3, vte, lua5_3, pcre2 }:
3 stdenv.mkDerivation rec {
4   pname = "tym";
5   version = "3.5.1";
7   src = fetchFromGitHub {
8     owner = "endaaman";
9     repo = "${pname}";
10     rev = version;
11     sha256 = "sha256-53XAHyDiFPUTmw/rgoEoSoh+c/t4rS12gxwH1yKHqvw=";
12   };
14   nativeBuildInputs = [
15     pkg-config
16     autoreconfHook
17   ];
19   buildInputs = [
20     gtk3
21     vte
22     lua5_3
23     pcre2
24   ];
26   meta = with lib; {
27     description = "Lua-configurable terminal emulator";
28     homepage = "https://github.com/endaaman/tym";
29     license = licenses.mit;
30     maintainers = with maintainers; [ wesleyjrz kashw2 ];
31     platforms = platforms.linux;
32     mainProgram = "tym";
33   };