haskell-PastePipe: update to 1.6

This commit is contained in:
Mateusz Kowalczyk 2014-10-15 05:14:35 +01:00
parent 8842fcfdb1
commit a21d3b67e5

View file

@ -1,20 +1,19 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cmdargs, HTTP, network }:
{ cabal, cmdargs, HTTP, network, networkUri }:
cabal.mkDerivation (self: {
pname = "PastePipe";
version = "1.5";
sha256 = "1jqfk6d22vi0vrwx0whjkh4pxwagr4hmi79bid6bffn72c7ygm8f";
version = "1.6";
sha256 = "08rsq2j3gy98a69pjldvbhawmnzxgld7abh9kszrb0kpjmd9sgc4";
isLibrary = true;
isExecutable = true;
buildDepends = [ cmdargs HTTP network ];
buildDepends = [ cmdargs HTTP network networkUri ];
meta = {
homepage = "http://github.com/creswick/pastepipe";
homepage = "http://github.com/Fuuzetsu/pastepipe";
description = "CLI for pasting to lpaste.net";
license = "GPL";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
broken = true;
};
})