mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
50 lines
921 B
Nix
50 lines
921 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, ninja
|
|
, pkg-config
|
|
, ed
|
|
, wrapGAppsHook3
|
|
, webkitgtk
|
|
, libxml2
|
|
, glib-networking
|
|
, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "badwolf";
|
|
version = "1.3.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://hacktivis.me/git/badwolf.git";
|
|
rev = "v${version}";
|
|
hash = "sha256-feWSxK9TJ5MWxUKutuTcdmMk5IbLjNseUAvfm20kQ1U=";
|
|
};
|
|
|
|
# configure script not accepting '--prefix'
|
|
prefixKey = "PREFIX=";
|
|
|
|
nativeBuildInputs = [
|
|
ninja
|
|
pkg-config
|
|
ed
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
webkitgtk
|
|
libxml2
|
|
gettext
|
|
glib-networking
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Minimalist and privacy-oriented WebKitGTK+ browser";
|
|
mainProgram = "badwolf";
|
|
homepage = "https://hacktivis.me/projects/badwolf";
|
|
license = with licenses; [ bsd3 cc-by-sa-40 ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ laalsaas aleksana ];
|
|
};
|
|
}
|