Unverified Commit d7de8455 authored by Ilan Joselevich's avatar Ilan Joselevich Committed by GitHub
Browse files

Merge pull request #249805 from fabaff/tailspin-bump

tailspin: 0.1.1 -> 1.4.0
parents 01db322a 3bbc6e4d
Loading
Loading
Loading
Loading
+9 −12
Original line number Diff line number Diff line
{ lib
, buildGoModule
, rustPlatform
, fetchFromGitHub
}:

buildGoModule rec {
rustPlatform.buildRustPackage rec {
  pname = "tailspin";
  version = "0.1.1";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "bensadeh";
    repo = pname;
    rev = version;
    sha256 = "sha256-f9VfOcLOWJ4yr/CS0lqaqiaTfzOgdoI9CaS70AMNdsc=";
    repo = "tailspin";
    rev = "refs/tags/${version}";
    hash = "sha256-mtMUHiuGuzLEJk4S+AnpyYGPn0naIP45R9itzXLhG8g=";
  };

  vendorHash = "sha256-gn7/pFw7JEhkkd/PBP4jLUKb5NBaRE/rb049Ic/Bu7A=";

  CGO_ENABLED = 0;

  subPackages = [ "." ];
  cargoHash = "sha256-M+TUdKtR8/vpkyJiO17LBPDgXq207pC2cUKE7krarfY=";

  meta = with lib; {
    description = "A log file highlighter and a drop-in replacement for `tail -f`";
    description = "A log file highlighter";
    homepage = "https://github.com/bensadeh/tailspin";
    changelog = "https://github.com/bensadeh/tailspin/blob/${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ dit7ya ];
    mainProgram = "spin";