2020-07-21 17:19:46 +01:00
|
|
|
{ stdenv, lib, rustPlatform, fetchFromGitHub, ncurses, CoreServices }:
|
2021-03-10 20:26:01 +00:00
|
|
|
let version = "0.2.7"; in
|
2020-07-21 17:19:46 +01:00
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "dijo";
|
|
|
|
inherit version;
|
|
|
|
buildInputs = [ ncurses ] ++ lib.optional stdenv.isDarwin CoreServices;
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NerdyPepper";
|
|
|
|
repo = "dijo";
|
|
|
|
rev = "v${version}";
|
2021-03-10 20:26:01 +00:00
|
|
|
sha256 = "sha256-g+A8BJxqoAvm9LTLrLnClVGtFJCQ2gT0mDGAov/6vXE=";
|
2020-07-21 17:19:46 +01:00
|
|
|
};
|
2021-03-10 20:26:01 +00:00
|
|
|
cargoSha256 = "sha256-3V94bOixYMznkCQu90+E/68Sfl9GvHp9LNxwWwk4xZQ=";
|
2020-07-21 17:19:46 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Scriptable, curses-based, digital habit tracker";
|
2020-07-21 17:19:46 +01:00
|
|
|
homepage = "https://github.com/NerdyPepper/dijo";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ infinisil ];
|
|
|
|
};
|
|
|
|
}
|