Skip to content

Commit

Permalink
Add vipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Ypnose committed Jan 11, 2025
1 parent 6abb08b commit 9823e42
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@
s-nail = build "s-nail";
sponge = build "sponge";
tempo = build "tempo";
vipe = build "vipe";
wg = build-static "wg";
wifycon = build "wifycon";
yss = build "yss";
29 changes: 29 additions & 0 deletions vipe/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
, buildGoModule
}:

buildGoModule rec {
pname = "vipe";
version = "20250111";

src = fetchFromGitHub {
owner = "ypnose";
repo = "gools";
rev = "24375a7d3e0d1c928e04c1a592bf684fef311b36";
hash = "sha256-Y4zjoQiTzSQKwW2vdfeF+7SRAp7Rwyx4RsUt4LXFq0U=";
};

vendorHash = null;

sourceRoot = "${src.name}/vipe";

ldflags = [ "-w -s" ];

meta = {
homepage = "https://github.com/Ypnose/gools";
description = "Simple tool to edit piped data";
platforms = lib.platforms.unix;
};
}

0 comments on commit 9823e42

Please sign in to comment.