2021-01-17 03:09:27 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkg-config, boost }:
|
2014-01-04 01:28:24 +01:00
|
|
|
|
2019-11-07 14:16:54 +01:00
|
|
|
mkDerivation {
|
2019-02-16 22:30:00 +01:00
|
|
|
name = "twmn-git-2018-10-01";
|
2014-01-04 01:28:24 +01:00
|
|
|
|
2019-02-16 22:30:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sboli";
|
|
|
|
repo = "twmn";
|
|
|
|
rev = "80f48834ef1a07087505b82358308ee2374b6dfb";
|
|
|
|
sha256 = "0mpjvp800x07lp9i3hfcc5f4bqj1fj4w3dyr0zwaxc6wqmm0fdqz";
|
2014-01-04 01:28:24 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config qmake ];
|
2017-06-02 17:40:19 +02:00
|
|
|
buildInputs = [ qtbase qtx11extras boost ];
|
2014-01-04 01:28:24 +01:00
|
|
|
|
2016-04-16 21:59:18 +02:00
|
|
|
postPatch = ''
|
2015-02-17 00:23:33 +01:00
|
|
|
sed -i s/-Werror// twmnd/twmnd.pro
|
|
|
|
'';
|
2014-01-04 01:28:24 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-08-29 20:33:10 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2014-01-04 01:28:24 +01:00
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp bin/* "$out/bin"
|
2016-08-29 20:33:10 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2014-01-04 01:28:24 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-02-22 17:59:22 +01:00
|
|
|
description = "A notification system for tiling window managers";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/sboli/twmn";
|
2019-11-07 14:16:54 +01:00
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
maintainers = [ lib.maintainers.matejc ];
|
|
|
|
license = lib.licenses.lgpl3;
|
2014-01-04 01:28:24 +01:00
|
|
|
};
|
|
|
|
}
|