3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/wgetpaste/default.nix

31 lines
908 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, wget, bash }:
2014-08-25 10:38:48 +01:00
stdenv.mkDerivation rec {
pname = "wgetpaste";
version = "2.32";
2017-02-28 22:26:05 +00:00
2014-08-25 10:38:48 +01:00
src = fetchurl {
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
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"
'';
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";
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
};
}