mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
nix-zsh-completions: add missing version to derivation name
This commit is contained in:
parent
6ab8d34989
commit
22aebcf1e1
@ -1,12 +1,16 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
version = "0.3.1";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nix-zsh-completions";
|
||||
name = "nix-zsh-completions-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spwhitt";
|
||||
repo = "nix-zsh-completions";
|
||||
rev = "0.3.1";
|
||||
rev = "${version}";
|
||||
sha256 = "1sbc52f5818bcygljrji84dyvgw727x50m9v6qfrsdaji3zkqga1";
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user