nixpkgs/pkgs/applications/misc/junction/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
2.0 KiB
Nix
Raw Normal View History

2022-07-03 11:44:33 +00:00
{ lib
, stdenv
, fetchFromGitHub
, appstream-glib
2022-11-04 00:30:31 +00:00
, blueprint-compiler
2022-07-03 11:44:33 +00:00
, desktop-file-utils
, gobject-introspection
, meson
, ninja
, pkg-config
, wrapGAppsHook4
, gjs
, gtk4
, libadwaita
, libportal-gtk4
}:
stdenv.mkDerivation rec {
pname = "junction";
2024-01-11 21:28:20 +00:00
version = "1.7";
2022-07-03 11:44:33 +00:00
src = fetchFromGitHub {
owner = "sonnyp";
repo = "junction";
rev = "v${version}";
2024-01-11 21:28:20 +00:00
sha256 = "sha256-qPseu2rzK6xp7eb/SrWK6fML/6xh4raP0MEreyZgqVI=";
2022-11-04 00:30:31 +00:00
fetchSubmodules = true;
2022-07-03 11:44:33 +00:00
};
nativeBuildInputs = [
appstream-glib
2022-11-04 00:30:31 +00:00
blueprint-compiler
2022-07-03 11:44:33 +00:00
desktop-file-utils
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook4
];
buildInputs = [
gjs
gtk4
libadwaita
libportal-gtk4
];
2022-11-04 00:30:31 +00:00
postPatch = ''
# gjs uses the invocation name to add gresource files
# - https://gitlab.gnome.org/GNOME/gjs/-/blob/6aca7b50785fa1638f144b17060870d721e3f65a/modules/script/package.js#L159
# - https://gitlab.gnome.org/GNOME/gjs/-/blob/6aca7b50785fa1638f144b17060870d721e3f65a/modules/script/package.js#L37
# To work around this, we manually set the the name as done in foliate
# - https://github.com/NixOS/nixpkgs/blob/3bacde6273b09a21a8ccfba15586fb165078fb62/pkgs/applications/office/foliate/default.nix#L23
sed -i "1 a imports.package._findEffectiveEntryPointName = () => 're.sonny.Junction';" src/bin.js
# /usr/bin/env is not accessible in build environment
substituteInPlace troll/gjspack/bin/gjspack --replace "/usr/bin/env -S gjs" "${gjs}/bin/gjs"
'';
2022-07-03 11:44:33 +00:00
postInstall = ''
2022-11-04 00:30:31 +00:00
# autoPatchShebangs does not like "/usr/bin/env -S <environment-setting> gjs -m"
sed -i "1s|.*|#!/usr/bin/gjs -m|" $out/bin/re.sonny.Junction
2022-07-03 11:44:33 +00:00
'';
meta = with lib; {
2022-11-04 00:30:31 +00:00
mainProgram = "re.sonny.Junction";
2022-07-03 11:44:33 +00:00
description = "Choose the application to open files and links";
homepage = "https://apps.gnome.org/en/app/re.sonny.Junction/";
2024-01-11 21:28:20 +00:00
license = licenses.gpl3Only;
2022-07-03 11:44:33 +00:00
maintainers = with maintainers; [ hqurve ];
platforms = platforms.linux;
};
}