Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
813 B
Nix
45 lines
813 B
Nix
{
|
|
haskellPackages,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
haskellPackages.mkDerivation rec {
|
|
pname = "nota";
|
|
version = "1.0-unstable-2023-03-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pouyakary";
|
|
repo = "Nota";
|
|
rev = "3548b864e5aa30ffbf1704a79dbb3bd3aab813be";
|
|
hash = "sha256-96T9uxUEV22/vn6aoInG1UPXbzlDHswOSkywkdwsMeY=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/source";
|
|
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
|
|
libraryHaskellDepends = with haskellPackages; [
|
|
base
|
|
bytestring
|
|
array
|
|
split
|
|
scientific
|
|
parsec
|
|
ansi-terminal
|
|
regex-compat
|
|
containers
|
|
terminal-size
|
|
numbers
|
|
text
|
|
time
|
|
];
|
|
|
|
description = "Command line calculator";
|
|
homepage = "https://pouyakary.org/nota/";
|
|
license = lib.licenses.mpl20;
|
|
maintainers = [ ];
|
|
mainProgram = "nota";
|
|
}
|