gopass: 1.7.1 -> 1.8.1

This commit is contained in:
Vladyslav Mykhailichenko 2018-06-20 14:53:46 +03:00
parent 142a2289ff
commit a64b88a833

View File

@ -1,18 +1,18 @@
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
buildGoPackage rec {
version = "1.7.1";
version = "1.8.1";
name = "gopass-${version}";
goPackagePath = "github.com/justwatchcom/gopass";
goPackagePath = "github.com/gopasspw/gopass";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "justwatchcom";
owner = "gopasspw";
repo = "gopass";
rev = "v${version}";
sha256 = "01cif6a2xa3c8nki0pas9mywdxs8d9niv8z13mii5hcfqvm0s7aw";
sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w";
};
wrapperPath = with stdenv.lib; makeBinPath ([
@ -38,7 +38,7 @@ buildGoPackage rec {
meta = with stdenv.lib; {
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
homepage = https://www.justwatch.com/gopass/;
homepage = https://www.gopass.pw/;
license = licenses.mit;
maintainers = with maintainers; [ andir ];
platforms = platforms.unix;