wgetpaste: 2.23 -> 2.25

This commit is contained in:
Domen Kožar 2014-08-25 11:38:48 +02:00
parent 7cd9bebb26
commit fbecc676e5

View File

@ -1,28 +1,29 @@
{stdenv, fetchurl, wget, bash, coreutils}: { stdenv, fetchurl, wget, bash, coreutils }:
stdenv.mkDerivation rec {
version = "2.23";
name = "wgetpaste-${version}";
src = fetchurl {
url = "http://wgetpaste.zlin.dk/${name}.tar.bz2";
sha256 = "1xam745f5pmqi16br72a866117hnmcfwjyvsw1jhg3npbdnm9x6n";
};
# currently zsh-autocompletion support is not installed
prePatch = '' stdenv.mkDerivation rec {
substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash" version = "2.25";
substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget" name = "wgetpaste-${version}";
''; src = fetchurl {
url = "http://wgetpaste.zlin.dk/${name}.tar.bz2";
sha256 = "1x209j85mryp3hxmv1gfsbvw03k306k5fa65ky0zxx07cs70fzka";
};
# currently zsh-autocompletion support is not installed
installPhase = '' prePatch = ''
mkdir -p $out/bin; substituteInPlace wgetpaste --replace "/usr/bin/env bash" "${bash}/bin/bash"
cp wgetpaste $out/bin; substituteInPlace wgetpaste --replace "LC_ALL=C wget" "LC_ALL=C ${wget}/bin/wget"
''; '';
meta = { installPhase = ''
description = "Command-line interface to various pastebins"; mkdir -p $out/bin;
homepage = http://wgetpaste.zlin.dk/; cp wgetpaste $out/bin;
license = "publicDomain"; '';
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = stdenv.lib.platforms.all; meta = {
}; description = "Command-line interface to various pastebins";
} homepage = http://wgetpaste.zlin.dk/;
license = "publicDomain";
maintainers = with stdenv.lib.maintainers; [ qknight iElectric ];
platforms = stdenv.lib.platforms.all;
};
}