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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.6 KiB
Nix
Raw Normal View History

2022-07-09 23:58:27 +03:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, muparser
, python3
, qtbase
, qtcharts
, qtdeclarative
, qtgraphicaleffects
, qtsvg
, qtx11extras
, wrapQtAppsHook
, nix-update-script
}:
2016-01-19 03:41:21 +03:00
2022-07-09 23:58:27 +03:00
stdenv.mkDerivation rec {
2018-12-20 12:28:45 +03:00
pname = "albert";
2022-10-09 05:04:49 +03:00
version = "0.17.6";
2016-01-19 03:41:21 +03:00
src = fetchFromGitHub {
2022-07-09 23:58:27 +03:00
owner = "albertlauncher";
repo = "albert";
rev = "v${version}";
2022-10-09 05:04:49 +03:00
sha256 = "sha256-nbnywrsKvFG8AkayjnylOKSnn7rRWgNv5zE9DDeOmLw=";
fetchSubmodules = true;
2016-01-19 03:41:21 +03:00
};
2022-07-09 23:58:27 +03:00
nativeBuildInputs = [
cmake
wrapQtAppsHook
];
2016-04-28 17:59:21 +03:00
2022-07-09 23:58:27 +03:00
buildInputs = [
muparser
python3
qtbase
qtcharts
qtdeclarative
qtgraphicaleffects
qtsvg
qtx11extras
];
2017-03-11 14:19:04 +03:00
postPatch = ''
2022-07-09 23:58:27 +03:00
find -type f -name CMakeLists.txt -exec sed -i {} -e '/INSTALL_RPATH/d' \;
2017-03-11 14:19:04 +03:00
2022-07-09 23:58:27 +03:00
sed -i src/app/main.cpp \
-e "/QStringList dirs = {/a QFileInfo(\"$out/lib\").canonicalFilePath(),"
2017-05-01 17:53:51 +03:00
'';
2022-07-09 23:58:27 +03:00
postFixup = ''
for i in $out/{bin/.albert-wrapped,lib/albert/plugins/*.so}; do
patchelf $i --add-rpath $out/lib/albert
done
2017-05-01 17:53:51 +03:00
'';
passthru.updateScript = nix-update-script { };
2022-07-09 23:58:27 +03:00
2017-05-17 22:26:11 +03:00
meta = with lib; {
2022-07-09 23:58:27 +03:00
description = "A fast and flexible keyboard launcher";
longDescription = ''
Albert is a desktop agnostic launcher. Its goals are usability and beauty,
performance and extensibility. It is written in C++ and based on the Qt
framework.
'';
homepage = "https://albertlauncher.github.io";
changelog = "https://github.com/albertlauncher/albert/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Plus;
2018-10-31 03:16:45 +03:00
maintainers = with maintainers; [ ericsagnes synthetica ];
2022-07-09 23:58:27 +03:00
platforms = platforms.linux;
2016-01-19 03:41:21 +03:00
};
}