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

27 lines
600 B
Nix
Raw Normal View History

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