2017-06-02 16:40:19 +01:00
|
|
|
{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, qmake, pkgconfig, boost }:
|
2014-01-04 00:28:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-16 23:23:33 +00:00
|
|
|
name = "twmn-git-2014-09-23";
|
2014-01-04 00:28:24 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/sboli/twmn.git";
|
2015-02-16 23:23:33 +00:00
|
|
|
rev = "9492a47e25547e602dd57efd807033677c90b150";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "1a68gka9gyxyzhc9rn8df59rzcdwkjw90cxp1kk0rdfp6svhxhsa";
|
2014-01-04 00:28:24 +00:00
|
|
|
};
|
|
|
|
|
2017-06-02 16:40:19 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
|
|
buildInputs = [ qtbase qtx11extras boost ];
|
2014-01-04 00:28:24 +00:00
|
|
|
|
2016-04-16 20:59:18 +01:00
|
|
|
postPatch = ''
|
2015-02-16 23:23:33 +00:00
|
|
|
sed -i s/-Werror// twmnd/twmnd.pro
|
|
|
|
'';
|
2014-01-04 00:28:24 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-08-29 19:33:10 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2014-01-04 00:28:24 +00:00
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp bin/* "$out/bin"
|
2016-08-29 19:33:10 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2014-01-04 00:28:24 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-02-22 16:59:22 +00:00
|
|
|
description = "A notification system for tiling window managers";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/sboli/twmn;
|
2014-01-04 00:28:24 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2014-02-22 16:59:22 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.matejc ];
|
2014-01-04 00:28:24 +00:00
|
|
|
};
|
|
|
|
}
|