mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
sxiv: fix version string
name would end up as "sxiv-v".
This commit is contained in:
parent
e6c65ecb12
commit
dea66a1cb3
@ -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";
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user