2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config, libxkbcommon, wayland, wayland-protocols }:
|
2020-04-30 04:09:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
pname = "havoc";
|
2020-08-27 23:52:53 +01:00
|
|
|
version = "0.3.1";
|
2020-04-30 04:09:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ii8";
|
|
|
|
repo = pname;
|
2020-08-27 23:52:53 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1g05r9j6srwz1krqvzckx80jn8fm48rkb4xp68953gy9yp2skg3k";
|
2020-04-30 04:09:49 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-30 04:09:49 +01:00
|
|
|
buildInputs = [ libxkbcommon wayland wayland-protocols ];
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$$out" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -D -m 644 havoc.cfg -t $out/etc/${pname}/
|
|
|
|
install -D -m 644 README.md -t $out/share/doc/${pname}-${version}/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-30 04:09:49 +01:00
|
|
|
description = "A minimal terminal emulator for Wayland";
|
|
|
|
homepage = "https://github.com/ii8/havoc";
|
|
|
|
license = with licenses; [ mit publicDomain ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
};
|
|
|
|
}
|