sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / go / go-rice / package.nix
blobf98384bd270f7a73e67ba12ae2e34c40c9070ed0
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "go-rice";
9   version = "1.0.2";
11   src = fetchFromGitHub {
12     owner = "GeertJohan";
13     repo = "go.rice";
14     rev = "v${version}";
15     sha256 = "sha256-jO4otde/m52L2NrE88aXRjdGDBNxnbP1Zt+5fEqfNIc=";
16   };
18   vendorHash = "sha256-VlpdZcqg7yWUADN8oD/IAgAXVdzJeIeymx2Pu/7E21o=";
20   subPackages = [
21     "."
22     "rice"
23   ];
25   meta = with lib; {
26     description = "Go package that makes working with resources such as html, js, css, images, templates very easy";
27     homepage = "https://github.com/GeertJohan/go.rice";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ blaggacao ];
30     mainProgram = "rice";
31   };