f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
24 lines
681 B
Nix
24 lines
681 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
let version = "2.0.1"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "p8-platform-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz";
|
|
sha256 = "1kslq24p2zams92kc247qcczbxb2n89ykk9jfyiilmwh7qklazp9";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Platform library for libcec and Kodi addons";
|
|
homepage = https://github.com/Pulse-Eight/platform;
|
|
repositories.git = "https://github.com/Pulse-Eight/platform.git";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.titanous ];
|
|
};
|
|
}
|