nixpkgs/pkgs/development/web/cog/default.nix

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

75 lines
1.3 KiB
Nix
Raw Normal View History

2020-08-24 07:53:31 +03:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, wayland
, wayland-protocols
, libwpe
, libwpe-fdo
, glib-networking
, webkitgtk
, makeWrapper
, wrapGAppsHook3
, gnome
2020-08-24 07:53:31 +03:00
, gdk-pixbuf
}:
stdenv.mkDerivation rec {
pname = "cog";
2021-05-18 04:39:26 +03:00
version = "0.8.1";
2020-08-24 07:53:31 +03:00
src = fetchFromGitHub {
owner = "igalia";
repo = "cog";
rev = "v${version}";
2021-05-18 04:39:26 +03:00
sha256 = "sha256-eF7rvOjZntcMmn622342yqfp4ksZ6R/FFBT36bYCViE=";
2020-08-24 07:53:31 +03:00
};
buildInputs = [
wayland-protocols
wayland
libwpe
libwpe-fdo
webkitgtk
glib-networking
gdk-pixbuf
gnome.adwaita-icon-theme
2020-08-24 07:53:31 +03:00
];
nativeBuildInputs = [
cmake
pkg-config
wayland
makeWrapper
wrapGAppsHook3
2020-08-24 07:53:31 +03:00
];
depsBuildsBuild = [
pkg-config
];
cmakeFlags = [
"-DCOG_USE_WEBKITGTK=ON"
];
2022-05-16 15:36:32 +03:00
# https://github.com/Igalia/cog/issues/438
postPatch = ''
substituteInPlace core/cogcore.pc.in \
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
'';
2020-08-24 07:53:31 +03:00
# not ideal, see https://github.com/WebPlatformForEmbedded/libwpe/issues/59
preFixup = ''
wrapProgram $out/bin/cog \
--prefix LD_LIBRARY_PATH : ${libwpe-fdo}/lib
'';
meta = with lib; {
description = "A small single window launcher for the WebKit WPE port";
license = licenses.mit;
maintainers = [ maintainers.matthewbauer ];
platforms = platforms.linux;
};
}