havoc: 0.3.1 -> 0.4.0
This commit is contained in:
parent
4ad9f4e242
commit
f243b177d5
@ -1,20 +1,32 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub
|
{ lib
|
||||||
, pkg-config, libxkbcommon, wayland, wayland-protocols }:
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libxkbcommon
|
||||||
|
, pkg-config
|
||||||
|
, wayland
|
||||||
|
, wayland-protocols
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "havoc";
|
pname = "havoc";
|
||||||
version = "0.3.1";
|
version = "0.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ii8";
|
owner = "ii8";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1g05r9j6srwz1krqvzckx80jn8fm48rkb4xp68953gy9yp2skg3k";
|
hash = "sha256-zNKDQqkDeNj5fB5EdMVfAs2H4uBgLh6Fp3uSjiJ1VhQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ libxkbcommon wayland wayland-protocols ];
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxkbcommon
|
||||||
|
wayland
|
||||||
|
wayland-protocols
|
||||||
|
];
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
@ -26,8 +38,8 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A minimal terminal emulator for Wayland";
|
|
||||||
homepage = "https://github.com/ii8/havoc";
|
homepage = "https://github.com/ii8/havoc";
|
||||||
|
description = "A minimal terminal emulator for Wayland";
|
||||||
license = with licenses; [ mit publicDomain ];
|
license = with licenses; [ mit publicDomain ];
|
||||||
platforms = with platforms; unix;
|
platforms = with platforms; unix;
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
Loading…
Reference in New Issue
Block a user