aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/web/shopify-themekit/default.nix
blob: a50140c15327f972e5826eb1983ce0a1cdea4c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildGoPackage, fetchFromGitHub }:

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 stdenv.lib; {
    description = "A command line tool for shopify themes";
    homepage = "https://shopify.github.io/themekit/";
    license = licenses.mit;
    maintainers = with maintainers; [ _1000101 ];
  };
}