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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
907 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 {
pname = "wgetpaste";
2022-11-23 12:22:43 +00:00
version = "2.33";
2017-02-28 22:26:05 +00:00
2014-08-25 09:38:48 +00:00
src = fetchurl {
url = "https://github.com/zlin/wgetpaste/releases/download/${version}/wgetpaste-${version}.tar.xz";
2022-11-23 12:22:43 +00:00
sha256 = "sha256-6TWdhKOmO7vRKGIVNcUwLy46heI6UiAOgej6ubd+lxs=";
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 = "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 09:38:48 +00:00
};
}