summary refs log tree commit diff
path: root/pkgs/applications/misc/valauncher/default.nix
blob: 38c4055a10bb8af91428416624deeeb1928e936b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, cmake, gtk3, vala, pkgconfig, gnome3, gobjectIntrospection }:

stdenv.mkDerivation rec {
  version = "1.3.1";
  name = "valauncher-${version}";

  src = fetchFromGitHub {
    owner = "Mic92";
    repo = "valauncher";
    rev = "v${version}";
    sha256 = "18969v870737jg1q0l3d05pb9mxsrcpdi0mnyz94rwkspszvxxqi";
  };

  nativeBuildInputs = [
    cmake vala pkgconfig
    # For setup hook
    gobjectIntrospection
  ];
  buildInputs = [ gtk3 gnome3.libgee ];

  meta = with stdenv.lib; {
      description = "A fast dmenu-like gtk3 application launcher";
      homepage = https://github.com/Mic92/valauncher;
      license = licenses.mit;
      maintainers = with maintainers; [ mic92 ];
      platforms = platforms.all;
  };
}