Unverified Commit fbf6ab32 authored by Phani Rithvij's avatar Phani Rithvij Committed by GitHub
Browse files

tdl: 0.17.1 -> 0.17.3 (#331930)



nixfmt-rfc-style fmt

Signed-off-by: default avatarphanirithvij <phanirithvij2000@gmail.com>
parent 7c8b2a22
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:
buildGoModule rec {
  pname = "tdl";
  version = "0.17.1";
  version = "0.17.3";

  src = fetchFromGitHub {
    owner = "iyear";
    repo = "tdl";
    rev = "v${version}";
    hash = "sha256-qyoZqd6VLiq8L4p4ubKIM6HWJdn7SaQDQN9kIArbnls=";
    hash = "sha256-PX6Ja7o7K/iq7hqn0g9jZHPPRp97sHau1Xd37m8RD2A=";
  };

  vendorHash = "sha256-Xfd98qce/xThwF+dssNznny8FgrORGsAhDALfW9bWEQ=";
  vendorHash = "sha256-NNTIigd8Gm+7jJzhizaRHc4jLwO7QKhFh4ce0lrYBh4=";

  ldflags = [
    "-s"
@@ -21,6 +22,9 @@ buildGoModule rec {
    "-X=github.com/iyear/tdl/pkg/consts.Version=${version}"
  ];

  # Filter out the main executable
  subPackages = [ "." ];

  # Requires network access
  doCheck = false;