From aeb401d9c6abdfa5a15708f3d4cf366dcaa4b577 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Tue, 26 Jun 2018 15:56:47 -0400 Subject: [PATCH] albert: 0.14.15 -> 0.14.21 (#42626) Albert has a new release including several extensions and bug fixes. Additionally, this upgrade solves current QT build issues. See https://albertlauncher.github.io/news/ for the full changelog. --- pkgs/applications/misc/albert/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index 250590d0d30..f16144f3bef 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -1,15 +1,18 @@ { mkDerivation, lib, fetchFromGitHub, makeWrapper, qtbase, qtdeclarative, qtsvg, qtx11extras, muparser, cmake, python3 }: +let + pname = "albert"; + version = "0.14.21"; +in mkDerivation rec { - name = "albert-${version}"; - version = "0.14.15"; + name = "${pname}-${version}"; src = fetchFromGitHub { owner = "albertlauncher"; repo = "albert"; rev = "v${version}"; - sha256 = "1rjp0bmzs8b9blbxz3sfcanyhgmds882pf1g3jx5qp85y64j8507"; + sha256 = "16nk9krn1mwr0bh57viig9hizqyp3slna0qg7s5a736nsfxy226w"; fetchSubmodules = true; };