nixpkgs/pkgs/development/web/shopify-themekit/default.nix

25 lines
600 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2020-04-21 14:30:07 +00:00
buildGoPackage rec {
pname = "shopify-themekit";
version = "1.0.3";
goPackagePath = "github.com/Shopify/themekit/";
goDeps = ./shopify-themekit_deps.nix;
src = fetchFromGitHub {
owner = "Shopify";
repo = "themekit";
rev = "v${version}";
sha256 = "1780h33mf2h2lv6mr4xx3shfvsabr7w138yb59vvdgvjng9wjkg0";
};
meta = with lib; {
2020-04-21 14:30:07 +00:00
description = "A command line tool for shopify themes";
homepage = "https://shopify.github.io/themekit/";
license = licenses.mit;
2020-07-29 10:57:20 +00:00
maintainers = with maintainers; [ _1000101 ];
2020-04-21 14:30:07 +00:00
};
}