mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ 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 (finalAttrs: {
|
|
pname = "forge-sparks";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rafaelmardojai";
|
|
repo = "forge-sparks";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-1Aq9Bv1UEckoA9IkQ9++rM6623GD41hgBJoeXKr2ipM=";
|
|
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; {
|
|
changelog = "https://github.com/rafaelmardojai/forge-sparks/releases/tag/${finalAttrs.version}";
|
|
description = "Get Git forges notifications";
|
|
homepage = "https://github.com/rafaelmardojai/forge-sparks";
|
|
license = licenses.mit;
|
|
mainProgram = "forge-sparks";
|
|
maintainers = with maintainers; [ michaelgrahamevans ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|