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

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

32 lines
938 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchurl, wget, bash }:
2014-08-25 11:38:48 +02:00
stdenv.mkDerivation rec {
pname = "wgetpaste";
2024-03-12 01:29:49 +01:00
version = "2.34";
2017-02-28 23:26:05 +01:00
2014-08-25 11:38:48 +02:00
src = fetchurl {
url = "https://github.com/zlin/wgetpaste/releases/download/${version}/wgetpaste-${version}.tar.xz";
2024-03-12 01:29:49 +01:00
sha256 = "sha256-vW0G7ZAaPWPJyMVxJghP8JlPCZAb+xY4uHlT6sHpQz8=";
2014-08-25 11:38:48 +02:00
};
# currently zsh-autocompletion support is not installed
2014-08-25 11:38:48 +02: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 11:38:48 +02:00
installPhase = ''
mkdir -p $out/bin;
cp wgetpaste $out/bin;
'';
meta = {
description = "Command-line interface to various pastebins";
mainProgram = "wgetpaste";
homepage = "https://github.com/zlin/wgetpaste";
2021-01-15 10:19:50 +01:00
license = lib.licenses.publicDomain;
maintainers = with lib.maintainers; [ qknight domenkozar ];
platforms = lib.platforms.all;
2014-08-25 11:38:48 +02:00
};
}