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
27 lines
721 B
Nix
27 lines
721 B
Nix
{ lib, fetchFromGitHub, ... }:
|
|
|
|
{
|
|
pname = "gerbil-utils";
|
|
version = "unstable-2023-12-06";
|
|
git-version = "0.4-13-g9398865";
|
|
softwareName = "Gerbil-utils";
|
|
gerbil-package = "clan";
|
|
version-path = "version";
|
|
|
|
pre-src = {
|
|
fun = fetchFromGitHub;
|
|
owner = "mighty-gerbils";
|
|
repo = "gerbil-utils";
|
|
rev = "939886579508ff34b58a0d65bbb7d666125d0551";
|
|
sha256 = "0dga03qq7iy12bnpxr6d40qhvihsvn3y87psf2w2clnpypjb3blx";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Gerbil Clan: Community curated Collection of Common Utilities";
|
|
homepage = "https://github.com/fare/gerbil-utils";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fare ];
|
|
};
|
|
}
|