2022-10-21 18:38:19 +00:00
|
|
|
{ fetchFromGitHub, lib, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "argos-unstable";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "20230404";
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "p-e-w";
|
|
|
|
repo = "argos";
|
2023-04-29 16:46:19 +00:00
|
|
|
rev = "e2d68ea23eed081fccaec06c384e2c5d2acb5b6b";
|
|
|
|
hash = "sha256-OJ/bUQkBQdlfEIqmneyUeIJoytTxyfibdyUDf3SJc0Q=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|