File tree Expand file tree Collapse file tree
applications/networking/browsers/badwolf Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ { stdenv
2+ , lib
3+ , fetchgit
4+ , pkg-config
5+ , wrapGAppsHook
6+ , webkitgtk
7+ , libxml2
8+ , glib
9+ , glib-networking
10+ , gettext
11+ } :
12+ stdenv . mkDerivation rec {
13+ pname = "badwolf" ;
14+ version = "1.2.2" ;
15+
16+ src = fetchgit {
17+ url = "git://hacktivis.me/git/badwolf.git" ;
18+ rev = "v${ version } " ;
19+ hash = "sha256-HfAsq6z+1kqMAsNxJjWJx9nd2cbv0XN4KRS8cYuhOsQ=" ;
20+ } ;
21+
22+ preConfigure = ''
23+ export PREFIX=$out
24+ '' ;
25+
26+ nativeBuildInputs = [ pkg-config wrapGAppsHook ] ;
27+
28+ buildInputs = [ webkitgtk libxml2 gettext glib glib-networking ] ;
29+
30+ meta = with lib ; {
31+ description = "Minimalist and privacy-oriented WebKitGTK+ browser" ;
32+ homepage = "https://hacktivis.me/projects/badwolf" ;
33+ license = licenses . bsd3 ;
34+ platforms = platforms . linux ;
35+ maintainers = with maintainers ; [ laalsaas ] ;
36+ } ;
37+
38+ }
Original file line number Diff line number Diff line change @@ -28354,6 +28354,8 @@ with pkgs;
2835428354
2835528355 inherit (gnome) baobab;
2835628356
28357+ badwolf = callPackage ../applications/networking/browsers/badwolf { };
28358+
2835728359 backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { };
2835828360
2835928361 backintime-qt = libsForQt5.callPackage ../applications/networking/sync/backintime/qt.nix { };
You can’t perform that action at this time.
0 commit comments