Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 28 lines 618 B view raw
1{ lib 2, buildNpmPackage 3, fetchFromGitHub 4}: 5 6buildNpmPackage rec { 7 pname = "maizzle"; 8 version = "1.5.9"; 9 10 src = fetchFromGitHub { 11 owner = "maizzle"; 12 repo = "cli"; 13 rev = "v${version}"; 14 hash = "sha256-r3HWqfm/BdOfENi5cGdau7ockvNLxnWufWcQepI/RFM="; 15 }; 16 17 npmDepsHash = "sha256-WlqWOGwmSab+cJWPUFIBWuFwMK4lFQm80PoUfEIIIH8="; 18 19 dontNpmBuild = true; 20 21 meta = { 22 description = "CLI tool for the Maizzle Email Framework"; 23 homepage = "https://github.com/maizzle/cli"; 24 license = lib.licenses.mit; 25 mainProgram = "maizzle"; 26 maintainers = with lib.maintainers; [ happysalada ]; 27 }; 28}