fab7c7edbf
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of twmn override the whole configurePhase, so this hook isn't run at all. This fixes the build of twmn and it now successfully compiles on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
33 lines
838 B
Nix
33 lines
838 B
Nix
{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, pkgconfig, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "twmn-git-2014-09-23";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/sboli/twmn.git";
|
|
rev = "9492a47e25547e602dd57efd807033677c90b150";
|
|
sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b";
|
|
};
|
|
|
|
buildInputs = [ qtbase qtx11extras pkgconfig boost ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
sed -i s/-Werror// twmnd/twmnd.pro
|
|
qmake
|
|
runHook postConfigure
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
cp bin/* "$out/bin"
|
|
'';
|
|
|
|
meta = {
|
|
description = "A notification system for tiling window managers";
|
|
homepage = "https://github.com/sboli/twmn";
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
maintainers = [ stdenv.lib.maintainers.matejc ];
|
|
};
|
|
}
|