Skip to content

Commit

Permalink
cosmic-settings-daemon: init at unstable-2023-12-29
Browse files Browse the repository at this point in the history
  • Loading branch information
nyabinary committed Jan 2, 2024
1 parent f6a028d commit ae167ef
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/co/cosmic-settings-daemon/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, udev
}:

rustPlatform.buildRustPackage rec {
pname = "cosmic-settings-daemon";
version = "unstable-2023-12-29";

src = fetchFromGitHub {
owner = "pop-os";
repo = pname;
rev = "f7183b68c6ca3f68054b5dd6457b1d5798a75a48";
hash = "sha256-Wck0NY6CUjD16gxi74stayiahs4UiqS7iQCkbOXCgKE=";
};

cargoHash = "sha256-vCs20RdGhsI1+f78KEau7ohtoGTrGP9QH91wooQlgOE=";

nativeBuildInputs = [ pkg-config ];
buildInputs = [ udev ];

meta = with lib; {
homepage = "https://github.com/pop-os/cosmic-settings-daemon";
description = "Settings Daemon for the COSMIC Desktop Environment";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nyanbinary ];
platforms = platforms.linux;
};
}

0 comments on commit ae167ef

Please sign in to comment.