2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, fetchurl, libX11 }:
|
2012-11-17 11:57:25 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-07 20:29:51 +00:00
|
|
|
pname = "wmname";
|
|
|
|
version = "0.1";
|
2012-11-17 11:57:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 20:29:51 +00:00
|
|
|
url = "https://dl.suckless.org/tools/wmname-${version}.tar.gz";
|
2012-11-17 11:57:25 +00:00
|
|
|
sha256 = "559ad188b2913167dcbb37ecfbb7ed474a7ec4bbcb0129d8d5d08cb9208d02c5";
|
|
|
|
};
|
|
|
|
|
2021-11-13 12:33:17 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace "@strip" "#@strip"
|
|
|
|
'';
|
|
|
|
|
2012-11-17 11:57:25 +00:00
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
|
2021-11-13 12:33:17 +00:00
|
|
|
makeFlags = [ "CC:=$(CC)" ];
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2012-11-17 11:57:25 +00:00
|
|
|
|
|
|
|
meta = {
|
2016-08-02 17:50:55 +00:00
|
|
|
description = "Prints or set the window manager name property of the root window";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://tools.suckless.org/wmname";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.unix;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "wmname";
|
2012-11-17 11:57:25 +00:00
|
|
|
};
|
|
|
|
}
|