nixpkgs/pkgs/tools/misc/dijo/default.nix

22 lines
712 B
Nix
Raw Normal View History

2020-07-21 16:19:46 +00:00
{ stdenv, lib, rustPlatform, fetchFromGitHub, ncurses, CoreServices }:
2021-03-10 20:26:01 +00:00
let version = "0.2.7"; in
2020-07-21 16:19:46 +00: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 16:19:46 +00:00
};
cargoSha256 = "sha256-o3+KcE7ozu6eUgwsOSr9DOoIo+/BZ3bJZe+WYQLXHpY=";
2020-07-21 16:19:46 +00:00
meta = with lib; {
description = "Scriptable, curses-based, digital habit tracker";
2020-07-21 16:19:46 +00:00
homepage = "https://github.com/NerdyPepper/dijo";
license = licenses.mit;
maintainers = with maintainers; [ infinisil ];
};
}