cosmic-launcher: init at 2022-08-12

This commit is contained in:
Gabriel Arazas 2022-08-12 12:52:24 +08:00
parent 9ff34ec426
commit f22edebbcb
2 changed files with 38 additions and 0 deletions

View 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;
};
}

View File

@ -10,6 +10,7 @@ let
artem = callPackage ./artem.nix { };
auto-editor = callPackage ./auto-editor.nix { };
awesome-cli = callPackage ./awesome-cli { };
cosmic-launcher = callPackage ./cosmic-launcher { };
cursedgl = callPackage ./cursedgl { };
clidle = callPackage ./clidle.nix { };
domterm = callPackage ./domterm { };