nixpkgs/pkgs/desktops/gnome/extensions/argos/default.nix
Anders Kaseorg cea1ae3633 argos: unstable-20230404 → unstable-2023-09-26
Required for GNOME 45 support.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2023-12-18 15:49:21 -08:00

31 lines
826 B
Nix

{ fetchFromGitHub, lib, stdenv }:
stdenv.mkDerivation rec {
pname = "argos";
version = "unstable-2023-09-26";
src = fetchFromGitHub {
owner = "p-e-w";
repo = "argos";
rev = "adfaa31e8c08f7b59e9492891a7e6f753c29b35e"; # https://github.com/p-e-w/argos/pull/150
hash = "sha256-st8AeMRtkvM4M/Z70qopjw9Yx0t9l0DsUke4ClQtcBU=";
};
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";
};
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";
};
}