summary refs log tree commit diff
path: root/pkgs/tools/text/wgetpaste
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-28 16:26:05 -0600
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-02-28 23:34:40 +0100
commitd02209edf251a9d3ba564fe4ed1a20b8bbfca869 (patch)
tree003868431834162d08b0f24bfe29b5b9508068ff /pkgs/tools/text/wgetpaste
parent0e0af18b57201c88531d4c56e511da367ea8deef (diff)
downloadnixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar.gz
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar.bz2
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar.lz
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar.xz
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.tar.zst
nixpkgs-d02209edf251a9d3ba564fe4ed1a20b8bbfca869.zip
wgetpaste: 2.25 -> 2.28
Diffstat (limited to 'pkgs/tools/text/wgetpaste')
-rw-r--r--pkgs/tools/text/wgetpaste/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/text/wgetpaste/default.nix b/pkgs/tools/text/wgetpaste/default.nix
index ced6ce402fb..81b90e4925d 100644
--- a/pkgs/tools/text/wgetpaste/default.nix
+++ b/pkgs/tools/text/wgetpaste/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl, wget, bash, coreutils }:
 
 stdenv.mkDerivation rec {
-  version = "2.25";
+  version = "2.28";
   name = "wgetpaste-${version}";
+
   src = fetchurl {
     url = "http://wgetpaste.zlin.dk/${name}.tar.bz2";
-    sha256 = "1x209j85mryp3hxmv1gfsbvw03k306k5fa65ky0zxx07cs70fzka";
+    sha256 = "1hh9svyypqcvdg5mjxyyfzpdzhylhf7s7xq5dzglnm4injx3i3ak";
   };
   # currently zsh-autocompletion support is not installed
 
@@ -23,7 +24,7 @@ stdenv.mkDerivation rec {
     description = "Command-line interface to various pastebins";
     homepage = http://wgetpaste.zlin.dk/;
     license = stdenv.lib.licenses.publicDomain;
-    maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ];
+    maintainers = with stdenv.lib.maintainers; [ qknight domenkozar ndowens ];
     platforms = stdenv.lib.platforms.all;
   };
 }