mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
23 lines
592 B
Nix
23 lines
592 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "pup";
|
|
version = "unstable-2022-03-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ericchiang";
|
|
repo = "pup";
|
|
rev = "5a57cf111366c7c08999a34b2afd7ba36d58a96d";
|
|
hash = "sha256-Ledg3xPbu71L5qUY033bru/lw03jws3s4YlAarIuqaA=";
|
|
};
|
|
|
|
vendorHash = "sha256-/MDSWIuSYNxKbTslqIooI2qKA8Pye0yJF2dY8g8qbWI=";
|
|
|
|
meta = with lib; {
|
|
description = "Parsing HTML at the command line";
|
|
mainProgram = "pup";
|
|
homepage = "https://github.com/ericchiang/pup";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|