2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, wget, bash }:
|
2012-03-28 14:21:42 +01:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wgetpaste";
|
2021-09-29 17:55:32 +01:00
|
|
|
version = "2.32";
|
2017-02-28 22:26:05 +00:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
src = fetchurl {
|
2021-09-29 17:55:32 +01:00
|
|
|
url = "https://github.com/zlin/wgetpaste/releases/download/${version}/wgetpaste-${version}.tar.xz";
|
|
|
|
sha256 = "04yv1hndxhrc5axwiw1yy0yrw1kli5fk4yj4267l7xdwqzxvl7b2";
|
2014-08-25 10:38:48 +01:00
|
|
|
};
|
|
|
|
# currently zsh-autocompletion support is not installed
|
2012-03-28 14:21:42 +01:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash"
|
|
|
|
substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget"
|
|
|
|
'';
|
2012-03-28 14:21:42 +01:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin;
|
|
|
|
cp wgetpaste $out/bin;
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Command-line interface to various pastebins";
|
2021-09-29 17:55:32 +01:00
|
|
|
homepage = "https://github.com/zlin/wgetpaste";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.publicDomain;
|
|
|
|
maintainers = with lib.maintainers; [ qknight domenkozar ];
|
|
|
|
platforms = lib.platforms.all;
|
2014-08-25 10:38:48 +01:00
|
|
|
};
|
|
|
|
}
|