nixpkgs/pkgs/applications/misc/twmn/default.nix
Daniel Schaefer b9c8fb0c5b twmn: Use QT's makeDerivation
Could not find libQt5Widgets.so.5 and SIBABRTs.
2019-11-07 14:16:56 +01:00

37 lines
864 B
Nix

{ lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkgconfig, boost }:
mkDerivation {
name = "twmn-git-2018-10-01";
src = fetchFromGitHub {
owner = "sboli";
repo = "twmn";
rev = "80f48834ef1a07087505b82358308ee2374b6dfb";
sha256 = "0mpjvp800x07lp9i3hfcc5f4bqj1fj4w3dyr0zwaxc6wqmm0fdqz";
};
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ qtbase qtx11extras boost ];
postPatch = ''
sed -i s/-Werror// twmnd/twmnd.pro
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
cp bin/* "$out/bin"
runHook postInstall
'';
meta = {
description = "A notification system for tiling window managers";
homepage = https://github.com/sboli/twmn;
platforms = with lib.platforms; linux;
maintainers = [ lib.maintainers.matejc ];
license = lib.licenses.lgpl3;
};
}