nixpkgs/pkgs/tools/text/wgetpaste/default.nix

31 lines
862 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, wget, bash }:
2014-08-25 09:38:48 +00:00
stdenv.mkDerivation rec {
2020-08-31 06:42:17 +00:00
version = "2.30";
pname = "wgetpaste";
2017-02-28 22:26:05 +00:00
2014-08-25 09:38:48 +00:00
src = fetchurl {
url = "http://wgetpaste.zlin.dk/${pname}-${version}.tar.bz2";
2020-08-31 06:42:17 +00:00
sha256 = "14k5i6j6f34hcf9gdb9cnvfwscn0ys2dgd73ci421wj9zzqkbv73";
2014-08-25 09:38:48 +00:00
};
# currently zsh-autocompletion support is not installed
2014-08-25 09:38:48 +00: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"
'';
2014-08-25 09:38:48 +00:00
installPhase = ''
mkdir -p $out/bin;
cp wgetpaste $out/bin;
'';
meta = {
description = "Command-line interface to various pastebins";
homepage = "http://wgetpaste.zlin.dk/";
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 09:38:48 +00:00
};
}