nixpkgs/pkgs/applications/misc/valauncher/default.nix

29 lines
753 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, gtk3, vala, pkgconfig, gnome3, gobjectIntrospection }:
2016-08-30 08:04:43 +00:00
stdenv.mkDerivation rec {
2017-09-20 12:22:47 +00:00
version = "1.3.1";
2016-08-30 08:04:43 +00:00
name = "valauncher-${version}";
src = fetchFromGitHub {
owner = "Mic92";
repo = "valauncher";
rev = "v${version}";
2017-09-20 12:22:47 +00:00
sha256 = "18969v870737jg1q0l3d05pb9mxsrcpdi0mnyz94rwkspszvxxqi";
2016-08-30 08:04:43 +00:00
};
nativeBuildInputs = [
cmake vala pkgconfig
# For setup hook
gobjectIntrospection
];
buildInputs = [ gtk3 gnome3.libgee ];
2016-08-30 08:04:43 +00:00
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;
};
}