nixpkgs/pkgs/development/libraries/libcec/platform.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
600 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "p8-platform";
2021-07-17 17:56:23 +00:00
version = "2.1.0.1";
src = fetchFromGitHub {
owner = "Pulse-Eight";
repo = "platform";
rev = "p8-platform-${version}";
sha256 = "sha256-zAI/AOLJAunv+cCQ6bOXrgkW+wl5frj3ktzx2cDeCCk=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Platform library for libcec and Kodi addons";
homepage = "https://github.com/Pulse-Eight/platform";
license = lib.licenses.gpl2Plus;
2021-03-11 18:41:30 +00:00
platforms = platforms.all;
maintainers = [ maintainers.titanous ];
};
}