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);
|
srcInfo = builtins.fromJSON (builtins.readFile ./source.json);
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
inherit (srcInfo) url rev sha256 fetchLFS fetchSubmodules deepClone leaveDotGit;
|
inherit (srcInfo) url rev sha256 fetchLFS fetchSubmodules deepClone leaveDotGit;
|
||||||
};
|
};
|
||||||
in
|
in src.overrideAttrs (_: rec {
|
||||||
src.overrideAttrs (_: {
|
name = "${pname}-${version}";
|
||||||
pname = "lotte-art";
|
pname = "lotte-art";
|
||||||
version = srcInfo.date;
|
version = srcInfo.date;
|
||||||
passthru.updateScript = [
|
passthru.updateScript = [
|
||||||
../../scripts/update-git.sh
|
../../scripts/update-git.sh
|
||||||
"https://git.chir.rs/darkkirb/lotte-art"
|
"https://git.chir.rs/darkkirb/lotte-art"
|
||||||
"art/lotte/source.json"
|
"art/lotte/source.json"
|
||||||
"--fetch-lfs"
|
"--fetch-lfs"
|
||||||
];
|
];
|
||||||
meta = {
|
meta = {
|
||||||
description = "Art I commissioned (mostly)";
|
description = "Art I commissioned (mostly)";
|
||||||
license = lib.licenses.cc-by-nc-sa-40;
|
license = lib.licenses.cc-by-nc-sa-40;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Reference in a new issue