Skip to content

Commit

Permalink
wf-osk: init at unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneSerge committed Aug 27, 2023
1 parent dbd115f commit 306a7b7
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/by-name/wf/wf-osk/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gtk-layer-shell
, gtkmm3
, meson
, ninja
, pkg-config
}:

stdenv.mkDerivation rec {
pname = "wf-osk";
version = "unstable-2020-09-01";

src = fetchFromGitHub {
owner = "WayfireWM";
repo = "wf-osk";
rev = "d2e2e3228913ffa800ca31402820d2d90619279e";
hash = "sha256-FpVnvkZbeubgwP2wGoocmw5u9E9MgK6WHEFkVEo1sUA=";
};

nativeBuildInputs = [
cmake
meson
ninja
pkg-config
];

buildInputs = [
gtkmm3
gtk-layer-shell
];

dontUseCmakeConfigure = true;

meta = with lib; {
description = "A very, very basic on-screen keyboard using gtkmm, virtual-keyboard-v1 and layer-shell protocols";
homepage = "https://github.com/WayfireWM/wf-osk";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

0 comments on commit 306a7b7

Please sign in to comment.