summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/albert
diff options
context:
space:
mode:
authorJon Banafato <jonathan.banafato@gmail.com>2018-06-26 15:56:47 -0400
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-26 21:56:47 +0200
commitaeb401d9c6abdfa5a15708f3d4cf366dcaa4b577 (patch)
treea452ac7081f4efdbf1df2b82c534bba051d09a32 /pkgs/applications/misc/albert
parent661c8f37c9a8f5ea9772c45ac53b1b11bb5c7ae2 (diff)
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.
Diffstat (limited to 'pkgs/applications/misc/albert')
-rw-r--r--pkgs/applications/misc/albert/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix
index 250590d0d302..f16144f3befa 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;
};