nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 31 lines 653 B view raw
1{ 2 lib, 3 eggDerivation, 4 fetchFromGitHub, 5 chickenEggs, 6}: 7 8eggDerivation { 9 src = fetchFromGitHub { 10 owner = "corngood"; 11 repo = "egg2nix"; 12 rev = "chicken-5"; 13 sha256 = "1vfnhbcnyakywgjafhs0k5kpsdnrinzvdjxpz3fkwas1jsvxq3d1"; 14 }; 15 16 pname = "egg2nix"; 17 version = "c5-git"; 18 buildInputs = with chickenEggs; [ 19 args 20 matchable 21 ]; 22 23 meta = { 24 description = "Generate nix-expression from CHICKEN scheme eggs"; 25 mainProgram = "egg2nix"; 26 homepage = "https://github.com/the-kenny/egg2nix"; 27 license = lib.licenses.bsd3; 28 platforms = lib.platforms.unix; 29 maintainers = with lib.maintainers; [ corngood ]; 30 }; 31}