nixpkgs/pkgs/applications/misc/watchmate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.5 KiB
Nix
Raw Normal View History

2022-09-29 23:14:19 +00:00
{ lib
, rustPlatform
2023-02-06 12:13:17 +00:00
, fetchFromGitHub
2022-09-29 23:14:19 +00:00
, pkg-config
, gtk4
, libadwaita
, bluez
, dbus
, openssl
, wrapGAppsHook4
, glib
}:
rustPlatform.buildRustPackage rec {
pname = "watchmate";
2023-03-21 08:05:36 +00:00
version = "0.4.4";
2022-09-29 23:14:19 +00:00
2023-02-06 12:13:17 +00:00
src = fetchFromGitHub {
2022-09-29 23:14:19 +00:00
owner = "azymohliad";
repo = "watchmate";
rev = "v${version}";
2023-03-21 08:05:36 +00:00
hash = "sha256-+E1tyDfFSu3J89fXd75bdYxh+Z1zTwKL6AmMTNQBEYY=";
2022-09-29 23:14:19 +00:00
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"mpris2-zbus-0.1.0" = "sha256-f2hth7TnA14I4UPyp0u4IfMi9WY4G3M1sEc4xNtnbr0=";
};
};
2022-09-29 23:14:19 +00:00
nativeBuildInputs = [
pkg-config
wrapGAppsHook4
glib
];
buildInputs = [
gtk4
libadwaita
bluez
dbus
openssl
];
postInstall = ''
install -Dm444 assets/io.gitlab.azymohliad.WatchMate.desktop -t $out/share/applications/
install -Dm444 assets/io.gitlab.azymohliad.WatchMate.metainfo.xml -t $out/share/metainfo/
install -Dm444 assets/icons/io.gitlab.azymohliad.WatchMate.svg -t $out/share/icons/hicolor/scalable/apps/
install -Dm444 assets/icons/io.gitlab.azymohliad.WatchMate-symbolic.svg -t $out/share/icons/hicolor/scalable/apps/
'';
meta = with lib; {
description = "PineTime smart watch companion app for Linux phone and desktop";
2023-02-06 12:13:17 +00:00
homepage = "https://github.com/azymohliad/watchmate";
changelog = "https://github.com/azymohliad/watchmate/raw/v${version}/CHANGELOG.md";
2022-09-29 23:14:19 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ chuangzhu ];
platforms = platforms.linux;
};
}