17927dee09
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.
31 lines
908 B
Nix
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;
|
|
};
|
|
}
|