blob: cd034dba6a032f52bce58a21393a05bd3cb2f838 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "draw";
version = "0.1.1";
src = fetchFromGitHub {
owner = "maaslalani";
repo = "${pname}";
rev = "v${version}";
hash = "sha256-ItrIN2Jyk+aoG2xxHT546GBuUV7yQ+saypEZKSEdRmw=";
};
vendorHash = "sha256-wUGxg+cdNY5ekViN5nCuKAVEeTmUbiyrXsuwfhI/2iw=";
}
|