1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/applications/misc/valauncher/default.nix

25 lines
679 B
Nix
Raw Normal View History

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