nixpkgs/pkgs/tools/misc/dashing/default.nix

27 lines
617 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2018-04-11 21:22:23 +00:00
buildGoPackage rec {
2020-06-17 12:59:35 +00:00
pname = "dashing";
version = "0.4.0";
2018-04-11 21:22:23 +00:00
goPackagePath = "github.com/technosophos/dashing";
2020-06-17 12:59:35 +00:00
src = fetchFromGitHub {
owner = "technosophos";
repo = pname;
rev = version;
sha256 = "0mhv0w5q5vpynbfi21n5i3yw2165bppdlg0amvbv86n9z4c21h89";
2018-04-11 21:22:23 +00:00
};
goDeps = ./deps.nix;
2020-06-17 12:59:35 +00:00
buildFlagsArray = [ "-ldflags=-X main.version=${version}" ];
meta = with lib; {
2018-04-11 21:22:23 +00:00
description = "A Dash Generator Script for Any HTML";
homepage = "https://github.com/technosophos/dashing";
2018-04-11 21:22:23 +00:00
license = licenses.mit;
maintainers = [ ];
};
}