sxiv: fix version string

name would end up as "sxiv-v".
This commit is contained in:
Joachim Fasting 2017-05-14 14:40:11 +02:00
parent e6c65ecb12
commit dea66a1cb3
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "sxiv-${version}";
version = "v1.3.2";
#https://github.com/muennich/sxiv/archive/v1.3.2.zip
version = "1.3.2";
src = fetchFromGitHub {
owner = "muennich";
repo = "sxiv";
rev = version;
rev = "v${version}";
sha256 = "1f4gz1qjhb44bbb3q5fqk439zyipkwnr19zhg89yq2pgmzzzqr2h";
};