badwolf: init at 1.2.2

This commit is contained in:
laalsaas 2023-02-16 23:56:42 +01:00
parent 1991c40759
commit bb55ac4f61
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ stdenv
, lib
, fetchgit
, pkg-config
, wrapGAppsHook
, webkitgtk
, libxml2
, glib
, glib-networking
, gettext
}:
stdenv.mkDerivation rec {
pname = "badwolf";
version = "1.2.2";
src = fetchgit {
url = "git://hacktivis.me/git/badwolf.git";
rev = "v${version}";
hash = "sha256-HfAsq6z+1kqMAsNxJjWJx9nd2cbv0XN4KRS8cYuhOsQ=";
};
preConfigure = ''
export PREFIX=$out
'';
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ webkitgtk libxml2 gettext glib glib-networking ];
meta = with lib; {
description = "Minimalist and privacy-oriented WebKitGTK+ browser";
homepage = "https://hacktivis.me/projects/badwolf";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ laalsaas ];
};
}

View File

@ -28354,6 +28354,8 @@ with pkgs;
inherit (gnome) baobab;
badwolf = callPackage ../applications/networking/browsers/badwolf { };
backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { };
backintime-qt = libsForQt5.callPackage ../applications/networking/sync/backintime/qt.nix { };