mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 21:48:22 +00:00
dabet: init at 3.0.0
This commit is contained in:
parent
6ed604af51
commit
fc88850f10
24
pkgs/tools/misc/dabet/default.nix
Normal file
24
pkgs/tools/misc/dabet/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, rustPlatform, fetchFromGitea }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "dabet";
|
||||
version = "3.0.0";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "papojari";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-B5z2RUkvztnGCKeVsjp/yzrI8m/6mjBB0DS1yhFZhM4=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-v1lc2quqxuNUbBQHaTtIDUPPTMyz8nj+TNCdSjrfrOA=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Print the duration between two times";
|
||||
homepage = "https://codeberg.org/papojari/dabet";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = with maintainers; [ papojari ];
|
||||
};
|
||||
}
|
||||
|
@ -2854,6 +2854,8 @@ with pkgs;
|
||||
|
||||
cucumber = callPackage ../development/tools/cucumber {};
|
||||
|
||||
dabet = callPackage ../tools/misc/dabet { };
|
||||
|
||||
dabtools = callPackage ../applications/radio/dabtools { };
|
||||
|
||||
daemontools = callPackage ../tools/admin/daemontools { };
|
||||
|
Loading…
Reference in New Issue
Block a user