nixpkgs/pkgs/applications/terminal-emulators/havoc/default.nix

36 lines
909 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, pkg-config, libxkbcommon, wayland, wayland-protocols }:
2020-04-30 03:09:49 +00:00
stdenv.mkDerivation rec {
pname = "havoc";
2020-08-27 22:52:53 +00:00
version = "0.3.1";
2020-04-30 03:09:49 +00:00
src = fetchFromGitHub {
owner = "ii8";
repo = pname;
2020-08-27 22:52:53 +00:00
rev = version;
sha256 = "1g05r9j6srwz1krqvzckx80jn8fm48rkb4xp68953gy9yp2skg3k";
2020-04-30 03:09:49 +00:00
};
nativeBuildInputs = [ pkg-config ];
2020-04-30 03:09:49 +00: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}/
'';
meta = with lib; {
2020-04-30 03:09:49 +00: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 ];
};
}