Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

34 lines
795 B
Nix

{
lib,
fetchFromGitHub,
gerbilPackages,
...
}:
{
pname = "gerbil-poo";
version = "unstable-2023-11-29";
git-version = "0.2-5-gacf654e";
softwareName = "Gerbil-POO";
gerbil-package = "clan/poo";
version-path = "version";
gerbilInputs = with gerbilPackages; [ gerbil-utils ];
pre-src = {
fun = fetchFromGitHub;
owner = "mighty-gerbils";
repo = "gerbil-poo";
rev = "acf654eb040c548da260a7a5d52bafb057d23541";
sha256 = "1pxv1j6hwcgjj67bb7vvlnyl3123r43ifldm6alm76v2mfp2vs81";
};
meta = {
description = "Gerbil POO: Prototype Object Orientation for Gerbil Scheme";
homepage = "https://github.com/fare/gerbil-poo";
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ fare ];
};
}