29 lines
904 B
Nix
29 lines
904 B
Nix
{stdenv, fetchurl, wget, bash, coreutils}:
|
|
stdenv.mkDerivation rec {
|
|
version = "2.23";
|
|
name = "wgetpaste-${version}";
|
|
src = fetchurl {
|
|
url = "http://wgetpaste.zlin.dk/${name}.tar.bz2";
|
|
sha256 = "1xam745f5pmqi16br72a866117hnmcfwjyvsw1jhg3npbdnm9x6n";
|
|
};
|
|
# 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 = http://wgetpaste.zlin.dk/;
|
|
license = "publicDomain";
|
|
maintainers = with stdenv.lib.maintainers; [qknight];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|