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

37 lines
864 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkgconfig, boost }:
2014-01-04 04:28:24 +04:00
mkDerivation {
2019-02-17 00:30:00 +03:00
name = "twmn-git-2018-10-01";
2014-01-04 04:28:24 +04:00
2019-02-17 00:30:00 +03:00
src = fetchFromGitHub {
owner = "sboli";
repo = "twmn";
rev = "80f48834ef1a07087505b82358308ee2374b6dfb";
sha256 = "0mpjvp800x07lp9i3hfcc5f4bqj1fj4w3dyr0zwaxc6wqmm0fdqz";
2014-01-04 04:28:24 +04:00
};
2017-06-02 18:40:19 +03:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ qtbase qtx11extras boost ];
2014-01-04 04:28:24 +04:00
postPatch = ''
sed -i s/-Werror// twmnd/twmnd.pro
'';
2014-01-04 04:28:24 +04:00
installPhase = ''
runHook preInstall
2014-01-04 04:28:24 +04:00
mkdir -p "$out/bin"
cp bin/* "$out/bin"
runHook postInstall
2014-01-04 04:28:24 +04:00
'';
meta = {
2014-02-22 20:59:22 +04:00
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;
2014-01-04 04:28:24 +04:00
};
}