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

36 lines
878 B
Nix
Raw Normal View History

{ stdenv, fetchgit, qtbase, qtx11extras, qmake, pkgconfig, boost }:
2014-01-04 00:28:24 +00:00
stdenv.mkDerivation rec {
name = "twmn-git-2014-09-23";
2014-01-04 00:28:24 +00:00
src = fetchgit {
url = "https://github.com/sboli/twmn.git";
rev = "9492a47e25547e602dd57efd807033677c90b150";
sha256 = "1a68gka9gyxyzhc9rn8df59rzcdwkjw90cxp1kk0rdfp6svhxhsa";
2014-01-04 00:28:24 +00:00
};
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ qtbase qtx11extras boost ];
2014-01-04 00:28:24 +00:00
postPatch = ''
sed -i s/-Werror// twmnd/twmnd.pro
'';
2014-01-04 00:28:24 +00:00
installPhase = ''
runHook preInstall
2014-01-04 00:28:24 +00:00
mkdir -p "$out/bin"
cp bin/* "$out/bin"
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";
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 ];
2018-08-04 14:28:21 +00:00
license = stdenv.lib.licenses.lgpl3;
2014-01-04 00:28:24 +00:00
};
}