nixpkgs/pkgs/development/libraries/ois/default.nix

25 lines
604 B
Nix
Raw Permalink Normal View History

2020-10-06 07:44:25 +00:00
{ stdenv, lib, fetchFromGitHub, cmake, libX11, Cocoa, IOKit, Kernel }:
stdenv.mkDerivation rec {
pname = "ois";
2020-10-06 07:44:25 +00:00
version = "1.5";
2020-10-06 07:44:25 +00:00
src = fetchFromGitHub {
owner = "wgois";
repo = "OIS";
rev = "v${version}";
sha256 = "0g8krgq5bdx2rw7ig0xva4kqv4x815672i7z6lljp3n8847wmypa";
};
2020-10-06 07:44:25 +00:00
nativeBuildInputs = [ cmake ];
2020-10-06 07:44:25 +00:00
buildInputs = [ libX11 ] ++ lib.optionals stdenv.isDarwin [ Cocoa IOKit Kernel ];
meta = with lib; {
description = "Object-oriented C++ input system";
maintainers = [ maintainers.raskin ];
2020-10-06 07:44:25 +00:00
platforms = platforms.unix;
license = licenses.zlib;
};
}