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
37 lines
851 B
Nix
37 lines
851 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
stdenv,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "argos";
|
|
version = "unstable-2025-03-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p-e-w";
|
|
repo = "argos";
|
|
rev = "13264042ae8b8a6f9f4778c623780e38e5d1cd89";
|
|
hash = "sha256-PMMpTaihMHj1FmnjJoZqAhDYVd263M1OZAC+OAnaZEg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/gnome-shell/extensions"
|
|
cp -a argos@pew.worldwidemann.com "$out/share/gnome-shell/extensions"
|
|
'';
|
|
|
|
passthru = {
|
|
extensionUuid = "argos@pew.worldwidemann.com";
|
|
extensionPortalSlug = "argos";
|
|
updateScript = unstableGitUpdater { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Create GNOME Shell extensions in seconds";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ andersk ];
|
|
homepage = "https://github.com/p-e-w/argos";
|
|
};
|
|
}
|