mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
cosmic-launcher: init at 2022-08-12
This commit is contained in:
parent
9ff34ec426
commit
f22edebbcb
37
pkgs/cosmic-launcher/default.nix
Normal file
37
pkgs/cosmic-launcher/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, pkg-config
|
||||||
|
, wrapGAppsHook4
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, libadwaita
|
||||||
|
, pango
|
||||||
|
, gtk4
|
||||||
|
, gdk-pixbuf
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cosmic-launcher";
|
||||||
|
version = "2022-08-12";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pop-os";
|
||||||
|
repo = pname;
|
||||||
|
rev = "e35ee8c05bfd3f2162baabe0ff5429a3ad27fead";
|
||||||
|
sha256 = "sha256-czr9SD0awW/L1eitRgqd7gCk5RbC4eidT5x+u7i0PVY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-/nvJdkgOrw/dRqWErzQChHgaG+O++lVj7nqVoyFxkuo=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ wrapGAppsHook4 pkg-config gobject-introspection ];
|
||||||
|
|
||||||
|
buildInputs = [ libadwaita glib gdk-pixbuf gtk4 pango ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "GTK4 application runner frontend for Pop launcher";
|
||||||
|
homepage = "https://github.com/pop-os/cosmic-launcher";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
};
|
||||||
|
}
|
@ -10,6 +10,7 @@ let
|
|||||||
artem = callPackage ./artem.nix { };
|
artem = callPackage ./artem.nix { };
|
||||||
auto-editor = callPackage ./auto-editor.nix { };
|
auto-editor = callPackage ./auto-editor.nix { };
|
||||||
awesome-cli = callPackage ./awesome-cli { };
|
awesome-cli = callPackage ./awesome-cli { };
|
||||||
|
cosmic-launcher = callPackage ./cosmic-launcher { };
|
||||||
cursedgl = callPackage ./cursedgl { };
|
cursedgl = callPackage ./cursedgl { };
|
||||||
clidle = callPackage ./clidle.nix { };
|
clidle = callPackage ./clidle.nix { };
|
||||||
domterm = callPackage ./domterm { };
|
domterm = callPackage ./domterm { };
|
||||||
|
Loading…
Reference in New Issue
Block a user