twmn: Use QT's makeDerivation
Could not find libQt5Widgets.so.5 and SIBABRTs.
This commit is contained in:
parent
3780b9e69c
commit
b9c8fb0c5b
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchFromGitHub, qtbase, qtx11extras, qmake, pkgconfig, boost }:
|
{ lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkgconfig, boost }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
mkDerivation {
|
||||||
name = "twmn-git-2018-10-01";
|
name = "twmn-git-2018-10-01";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -29,8 +29,8 @@ stdenv.mkDerivation {
|
||||||
meta = {
|
meta = {
|
||||||
description = "A notification system for tiling window managers";
|
description = "A notification system for tiling window managers";
|
||||||
homepage = https://github.com/sboli/twmn;
|
homepage = https://github.com/sboli/twmn;
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with lib.platforms; linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.matejc ];
|
maintainers = [ lib.maintainers.matejc ];
|
||||||
license = stdenv.lib.licenses.lgpl3;
|
license = lib.licenses.lgpl3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue