2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, wget, bash }:
|
2012-03-28 14:21:42 +01:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-31 07:42:17 +01:00
|
|
|
version = "2.30";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wgetpaste";
|
2017-02-28 22:26:05 +00:00
|
|
|
|
2014-08-25 10:38:48 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://wgetpaste.zlin.dk/${pname}-${version}.tar.bz2";
|
2020-08-31 07:42:17 +01:00
|
|
|
sha256 = "14k5i6j6f34hcf9gdb9cnvfwscn0ys2dgd73ci421wj9zzqkbv73";
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://wgetpaste.zlin.dk/";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.publicDomain;
|
2019-12-26 21:28:10 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ];
|
2014-08-25 10:38:48 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|