lol

gerbilPackages-unstable.smug-gerbil: 2019-12-24 -> 2020-12-12

+13 -18
+13 -18
pkgs/development/compilers/gerbil/smug-gerbil.nix
··· 1 - { pkgs, lib, fetchFromGitHub, gerbil-unstable, gerbil-support, gambit-support }: 1 + { lib, fetchFromGitHub, ... }: 2 + 2 3 { 3 4 pname = "smug-gerbil"; 4 - version = "unstable-2019-12-24"; 5 - git-version = "95d60d4"; 6 - gerbil-package = "drewc/smug"; 7 - gerbil = gerbil-unstable; 8 - gerbilInputs = []; 9 - buildInputs = []; 10 - gambit-params = gambit-support.unstable-params; 11 - version-path = ""; #"version"; 5 + version = "unstable-2020-12-12"; 6 + git-version = "0.4.20"; 12 7 softwareName = "Smug-Gerbil"; 8 + gerbil-package = "drewc/smug"; 9 + 13 10 pre-src = { 14 11 fun = fetchFromGitHub; 15 12 owner = "drewc"; 16 13 repo = "smug-gerbil"; 17 - rev = "95d60d486c1603743c6d3c525e6d5f5761b984e5"; 18 - sha256 = "0ys07z78gq60z833si2j7xa1scqvbljlx1zb32vdf32f1b27c04j"; 14 + rev = "cf23a47d0891aa9e697719309d04dd25dd1d840b"; 15 + sha256 = "13fdijd71m3fzp9fw9xp6ddgr38q1ly6wnr53salp725w6i4wqid"; 19 16 }; 20 - meta = { 17 + 18 + meta = with lib; { 21 19 description = "Super Monadic Über Go-into : Parsers and Gerbil Scheme"; 22 20 homepage = "https://github.com/drewc/smug-gerbil"; 23 - license = lib.licenses.mit; 24 - platforms = lib.platforms.unix; 25 - maintainers = with lib.maintainers; [ fare ]; 21 + license = licenses.mit; 22 + platforms = platforms.unix; 23 + maintainers = with maintainers; [ fare ]; 26 24 }; 27 - buildScript = '' 28 - for i in primitive simple tokens smug ; do gxc -O $i.ss ; done 29 - ''; 30 25 }