51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
alsa-lib,
|
|
stdenv,
|
|
darwin,
|
|
testers,
|
|
porsmo,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "porsmo";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ColorCookie-dev";
|
|
repo = "porsmo";
|
|
rev = version;
|
|
hash = "sha256-bYPUSrGJKoNLFkIiGuXraYoaYn/HKSP8IiH3gtyWfmw=";
|
|
};
|
|
|
|
cargoHash = "sha256-EVo8iewKs4D7H2GP/T5oFO6LlTSzuIUqEdpwgjCKtJ8=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
alsa-lib
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreAudio
|
|
darwin.apple_sdk.frameworks.CoreFoundation
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = porsmo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Pomodoro cli app in rust with timer and countdown";
|
|
homepage = "https://github.com/ColorCookie-dev/porsmo";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ MoritzBoehme ];
|
|
mainProgram = "porsmo";
|
|
};
|
|
}
|