-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281571 from michaelgrahamevans/forge-sparks
forge-sparks: init at 0.2.0
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ lib | ||
, blueprint-compiler | ||
, desktop-file-utils | ||
, fetchFromGitHub | ||
, gjs | ||
, glib | ||
, glib-networking | ||
, gtk4 | ||
, libadwaita | ||
, libportal | ||
, libsecret | ||
, libsoup_3 | ||
, meson | ||
, ninja | ||
, pkg-config | ||
, stdenv | ||
, wrapGAppsHook4 | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "forge-sparks"; | ||
version = "0.2.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "rafaelmardojai"; | ||
repo = pname; | ||
rev = version; | ||
hash = "sha256-kUvUAJLCqIQpjm8RzAZaHVkdDCD9uKSQz9cYN60xS+4="; | ||
fetchSubmodules = true; | ||
}; | ||
|
||
patches = [ | ||
# XdpGtk4 is imported but not used so we remove it to avoid the dependence on libportal-gtk4 | ||
./remove-xdpgtk4-import.patch | ||
]; | ||
|
||
postPatch = '' | ||
patchShebangs troll/gjspack/bin/gjspack | ||
''; | ||
|
||
nativeBuildInputs = [ | ||
blueprint-compiler | ||
desktop-file-utils | ||
gjs | ||
meson | ||
ninja | ||
pkg-config | ||
wrapGAppsHook4 | ||
]; | ||
|
||
buildInputs = [ | ||
glib | ||
glib-networking | ||
gtk4 | ||
libadwaita | ||
libportal | ||
libsecret | ||
libsoup_3 | ||
]; | ||
|
||
meta = with lib; { | ||
description = "Get Git forges notifications"; | ||
homepage = "https://github.com/rafaelmardojai/forge-sparks"; | ||
changelog = "https://github.com/rafaelmardojai/forge-sparks/releases/tag/${version}"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ michaelgrahamevans ]; | ||
mainProgram = "forge-sparks"; | ||
platforms = platforms.linux; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/util.js b/src/util.js | ||
index d37e42f..9e57ad5 100644 | ||
--- a/src/util.js | ||
+++ b/src/util.js | ||
@@ -4,7 +4,6 @@ import Gio from 'gi://Gio'; | ||
import GLib from 'gi://GLib'; | ||
import Soup from 'gi://Soup'; | ||
import Xdp from 'gi://Xdp'; | ||
-import XdpGtk4 from 'gi://XdpGtk4'; | ||
import { gettext as _, ngettext } from 'gettext'; | ||
|
||
const Format = imports.format; |