Skip to content

Commit

Permalink
pop-shell-shortcuts: init at unstable-2021-10-02
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzime committed Dec 25, 2021
1 parent 69043ba commit 23df5f5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/desktops/gnome/core/pop-shell-shortcuts/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, gtk3 }:

stdenv.mkDerivation rec {
pname = "pop-shell-shortcuts";
version = "unstable-2021-10-02";

src = fetchFromGitHub {
owner = "pop-os";
repo = "shell-shortcuts";
rev = "005f76c8e59d924a7edb59a2d08030d439b7fd45";
sha256 = "sha256-/o6sQ/EieIbZrD7p1dwYOQ+uBsk+zf3vjnPXOcD890Q=";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-SySh4/xjP+KnuL3x+IFQUyLgpI3hyshi3h8L5m5ZXOk=";
};

nativeBuildInputs = [ pkg-config rustPlatform.cargoSetupHook rustPlatform.rust.cargo ];
buildInputs = [ gtk3 ];

installFlags = [ "prefix=$(out)" "DESTDIR=" ];

meta = with lib; {
description = "Application for displaying and demoing Pop Shell shortcuts";
license = licenses.gpl3Only;
homepage = "https://github.com/pop-os/shell-shortcuts";
platforms = platforms.linux;
maintainers = with maintainers; [ Enzime ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31242,6 +31242,8 @@ with pkgs;

pop-launcher = callPackage ../desktops/gnome/core/pop-launcher { };

pop-shell-shortcuts = callPackage ../desktops/gnome/core/pop-shell-shortcuts { };

latte-dock = libsForQt5.callPackage ../applications/misc/latte-dock { };

gnome-themes-extra = gnome.gnome-themes-extra;
Expand Down

0 comments on commit 23df5f5

Please sign in to comment.