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

26 lines
671 B
Nix

{ lib, fetchFromGitHub, ... }:
{
pname = "smug-gerbil";
version = "unstable-2020-12-12";
git-version = "0.4.20";
softwareName = "Smug-Gerbil";
gerbil-package = "drewc/smug";
pre-src = {
fun = fetchFromGitHub;
owner = "drewc";
repo = "smug-gerbil";
rev = "cf23a47d0891aa9e697719309d04dd25dd1d840b";
sha256 = "13fdijd71m3fzp9fw9xp6ddgr38q1ly6wnr53salp725w6i4wqid";
};
meta = {
description = "Super Monadic Über Go-into : Parsers and Gerbil Scheme";
homepage = "https://github.com/drewc/smug-gerbil";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ fare ];
};
}