correct the name of lotte-art
This commit is contained in:
parent
0094b20a4d
commit
dfcec283ac
1 changed files with 16 additions and 20 deletions
|
@ -1,24 +1,20 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchgit,
|
||||
lib,
|
||||
}: let
|
||||
{ stdenv, fetchgit, lib }: let
|
||||
srcInfo = builtins.fromJSON (builtins.readFile ./source.json);
|
||||
src = fetchgit {
|
||||
inherit (srcInfo) url rev sha256 fetchLFS fetchSubmodules deepClone leaveDotGit;
|
||||
};
|
||||
in
|
||||
src.overrideAttrs (_: {
|
||||
pname = "lotte-art";
|
||||
version = srcInfo.date;
|
||||
passthru.updateScript = [
|
||||
../../scripts/update-git.sh
|
||||
"https://git.chir.rs/darkkirb/lotte-art"
|
||||
"art/lotte/source.json"
|
||||
"--fetch-lfs"
|
||||
];
|
||||
meta = {
|
||||
description = "Art I commissioned (mostly)";
|
||||
license = lib.licenses.cc-by-nc-sa-40;
|
||||
};
|
||||
})
|
||||
in src.overrideAttrs (_: rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lotte-art";
|
||||
version = srcInfo.date;
|
||||
passthru.updateScript = [
|
||||
../../scripts/update-git.sh
|
||||
"https://git.chir.rs/darkkirb/lotte-art"
|
||||
"art/lotte/source.json"
|
||||
"--fetch-lfs"
|
||||
];
|
||||
meta = {
|
||||
description = "Art I commissioned (mostly)";
|
||||
license = lib.licenses.cc-by-nc-sa-40;
|
||||
};
|
||||
})
|
||||
|
|
Reference in a new issue