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

31 lines
882 B
Nix
Raw Normal View History

{ stdenv, fetchurl, wget, bash }:
2014-08-25 09:38:48 +00:00
stdenv.mkDerivation rec {
version = "2.29";
2014-08-25 09:38:48 +00:00
name = "wgetpaste-${version}";
2017-02-28 22:26:05 +00:00
2014-08-25 09:38:48 +00:00
src = fetchurl {
url = "http://wgetpaste.zlin.dk/${name}.tar.bz2";
sha256 = "1rp0wxr3zy7y2xp3azaadfghrx7g0m138f9qg6icjxkkz4vj9r22";
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/;
license = stdenv.lib.licenses.publicDomain;
2017-02-28 22:26:05 +00:00
maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ndowens ];
2014-08-25 09:38:48 +00:00
platforms = stdenv.lib.platforms.all;
};
}