about summary refs log tree commit diff
path: root/pkgs/tools/misc/pastebinit
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 09:32:04 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 09:32:04 -0800
commit01dd922ca01312b240aca08ecd3b4cd51cfb3d82 (patch)
tree627a9ad59c75122cb8701b4bf010315323682a9a /pkgs/tools/misc/pastebinit
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar.gz
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar.bz2
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar.lz
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar.xz
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.tar.zst
nixlib-01dd922ca01312b240aca08ecd3b4cd51cfb3d82.zip
pastebinit: 1.4.1 -> 1.5
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/5jkp246zcc0k7lbrkngsr005brnf3giy-pastebinit-1.5/bin/pastebinit -h` got 0 exit code
- ran `/nix/store/5jkp246zcc0k7lbrkngsr005brnf3giy-pastebinit-1.5/bin/pastebinit -v` and found version 1.5
- ran `/nix/store/5jkp246zcc0k7lbrkngsr005brnf3giy-pastebinit-1.5/bin/pastebinit -h` and found version 1.5
- found 1.5 with grep in /nix/store/5jkp246zcc0k7lbrkngsr005brnf3giy-pastebinit-1.5
- found 1.5 in filename of file in /nix/store/5jkp246zcc0k7lbrkngsr005brnf3giy-pastebinit-1.5

cc "@lethalman"
Diffstat (limited to 'pkgs/tools/misc/pastebinit')
-rw-r--r--pkgs/tools/misc/pastebinit/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/pastebinit/default.nix b/pkgs/tools/misc/pastebinit/default.nix
index fd5004302dff..a5e45dc259b9 100644
--- a/pkgs/tools/misc/pastebinit/default.nix
+++ b/pkgs/tools/misc/pastebinit/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, python3 }:
 
 stdenv.mkDerivation rec {
-  version = "1.4.1";
+  version = "1.5";
   name = "pastebinit-${version}";
 
   src = fetchurl {
     url = "https://launchpad.net/pastebinit/trunk/${version}/+download/${name}.tar.bz2";
-    sha256 = "1rl854izwn1fpaaib6zj7a1a9bis8n7w4zfxcapgfffj37zj0dy2";
+    sha256 = "0mw48fgm9lyh9d3pw997fccmglzsjccf2y347gxjas74wx6aira2";
   };
 
   buildInputs = [ python3 ];