nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 25 lines 671 B view raw
1{ lib, fetchFromGitHub, ... }: 2 3{ 4 pname = "smug-gerbil"; 5 version = "unstable-2020-12-12"; 6 git-version = "0.4.20"; 7 softwareName = "Smug-Gerbil"; 8 gerbil-package = "drewc/smug"; 9 10 pre-src = { 11 fun = fetchFromGitHub; 12 owner = "drewc"; 13 repo = "smug-gerbil"; 14 rev = "cf23a47d0891aa9e697719309d04dd25dd1d840b"; 15 sha256 = "13fdijd71m3fzp9fw9xp6ddgr38q1ly6wnr53salp725w6i4wqid"; 16 }; 17 18 meta = { 19 description = "Super Monadic Über Go-into : Parsers and Gerbil Scheme"; 20 homepage = "https://github.com/drewc/smug-gerbil"; 21 license = lib.licenses.mit; 22 platforms = lib.platforms.unix; 23 maintainers = with lib.maintainers; [ fare ]; 24 }; 25}