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

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

25 lines
615 B
Nix
Raw Normal View History

2022-04-13 21:34:06 +02:00
{ lib, rustPlatform, fetchFromGitea }:
rustPlatform.buildRustPackage rec {
pname = "dabet";
version = "3.0.0";
src = fetchFromGitea {
domain = "codeberg.org";
2022-07-20 01:47:30 +02:00
owner = "annaaurora";
2022-04-13 21:34:06 +02:00
repo = pname;
rev = "v${version}";
sha256 = "sha256-B5z2RUkvztnGCKeVsjp/yzrI8m/6mjBB0DS1yhFZhM4=";
};
cargoSha256 = "sha256-v1lc2quqxuNUbBQHaTtIDUPPTMyz8nj+TNCdSjrfrOA=";
meta = with lib; {
description = "Print the duration between two times";
2022-07-20 01:47:30 +02:00
homepage = "https://codeberg.org/annaaurora/dabet";
2022-04-13 21:34:06 +02:00
license = licenses.lgpl3Only;
2022-07-20 01:47:30 +02:00
maintainers = with maintainers; [ annaaurora ];
2022-04-13 21:34:06 +02:00
};
}