dclock: init at 0.1.0

This commit is contained in:
Travis
2024-12-03 15:24:42 -07:00
parent 1e6b74a8bd
commit 56da44bfe9
+43
View File
@@ -0,0 +1,43 @@
{
lib,
stdenv,
fetchFromGitHub,
haskellPackages,
}:
haskellPackages.mkDerivation {
pname = "dclock";
version = "0.1.0";
src = fetchFromGitHub {
owner = "travgm";
repo = "dclock";
rev = "main";
sha256 = "sha256-IJsbEg1dFiyIJSlVWy8x+tsa49YxLK8mNkJESFyUQoU=";
};
isLibrary = false;
isExecutable = true;
jailbreak = true;
doCheck = false;
executableHaskellDepends = with haskellPackages; [
base
QuickCheck
ansi-terminal
hspec
hspec-discover
lens
machines
optparse-applicative
text
time
process
];
description = "Decimal clock that breaks your day into a 1000 decimal minutes";
homepage = "https://github.com/travgm/dclock";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ travgm ];
mainProgram = "dclock";
}