summary refs log tree commit diff
path: root/pkgs/tools/text/wgetpaste/default.nix
blob: 3360fd4cbe0960c80c10b39a039d0688f3859d19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, wget, bash }:

stdenv.mkDerivation rec {
  version = "2.29";
  pname = "wgetpaste";

  src = fetchurl {
    url = "http://wgetpaste.zlin.dk/${pname}-${version}.tar.bz2";
    sha256 = "1rp0wxr3zy7y2xp3azaadfghrx7g0m138f9qg6icjxkkz4vj9r22";
  };
  # currently zsh-autocompletion support is not installed

  prePatch = ''
    substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash"
    substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget"
  '';

  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;
    maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ];
    platforms = stdenv.lib.platforms.all;
  };
}