Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
glib,
|
|
gjs,
|
|
typescript,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gnome-shell-extension-pop-shell";
|
|
version = "1.2.0-unstable-2025-07-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pop-os";
|
|
repo = "shell";
|
|
rev = "6fd8c039a081e8ad7bbd40ef7883ec6e5fc2a3f8";
|
|
hash = "sha256-3zIbfjaJSUbPmUVppoSBWviQWQvykaT1qw9uQvcXmvM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
gjs
|
|
typescript
|
|
];
|
|
|
|
buildInputs = [ gjs ];
|
|
|
|
patches = [
|
|
./fix-gjs.patch
|
|
];
|
|
|
|
makeFlags = [ "XDG_DATA_HOME=$(out)/share" ];
|
|
|
|
passthru = {
|
|
extensionUuid = "pop-shell@system76.com";
|
|
extensionPortalSlug = "pop-shell";
|
|
updateScript = unstableGitUpdater { };
|
|
};
|
|
|
|
postPatch = ''
|
|
for file in */main.js; do
|
|
substituteInPlace $file --replace "gjs" "${gjs}/bin/gjs"
|
|
done
|
|
'';
|
|
|
|
preFixup = ''
|
|
chmod +x $out/share/gnome-shell/extensions/pop-shell@system76.com/*/main.js
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Keyboard-driven layer for GNOME Shell";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.genofire ];
|
|
homepage = "https://github.com/pop-os/shell";
|
|
};
|
|
}
|