nixpkgs/pkgs/tools/text/wgetpaste/default.nix
Sergei Trofimovich 17927dee09 wgetpaste: 2.30 -> 2.32
2.30 can's paste to `dpaste` (default driver). 2.32 has it fixed
by using v2 endpoint. While at it switch homepage to github project.
2021-09-29 17:56:56 +01:00

31 lines
908 B
Nix

{ lib, stdenv, fetchurl, wget, bash }:
stdenv.mkDerivation rec {
pname = "wgetpaste";
version = "2.32";
src = fetchurl {
url = "https://github.com/zlin/wgetpaste/releases/download/${version}/wgetpaste-${version}.tar.xz";
sha256 = "04yv1hndxhrc5axwiw1yy0yrw1kli5fk4yj4267l7xdwqzxvl7b2";
};
# currently zsh-autocompletion support is not installed
prePatch = ''
substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash"
substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget"
'';
installPhase = ''
mkdir -p $out/bin;
cp wgetpaste $out/bin;
'';
meta = {
description = "Command-line interface to various pastebins";
homepage = "https://github.com/zlin/wgetpaste";
license = lib.licenses.publicDomain;
maintainers = with lib.maintainers; [ qknight domenkozar ];
platforms = lib.platforms.all;
};
}