bump: kmscon

This commit is contained in:
Infinidoge 2022-06-23 00:18:41 -04:00
parent ceff195dbd
commit 6968b49920
3 changed files with 30 additions and 10 deletions

View file

@ -0,0 +1,21 @@
{
"kmscon": {
"cargoLocks": null,
"extract": null,
"name": "kmscon",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "Aetf",
"repo": "kmscon",
"rev": "b65f4269b03de580923ab390bde795e7956b633f",
"sha256": "sha256-OnBGdg+EU6ddjebUb+PbXJgIXTcUBL1p4CATlPWsypk=",
"type": "github"
},
"version": "b65f4269b03de580923ab390bde795e7956b633f"
}
}

View file

@ -1,16 +1,15 @@
# This file was generated by nvfetcher, please do not modify it manually. # This file was generated by nvfetcher, please do not modify it manually.
{ fetchgit, fetchurl }: { fetchgit, fetchurl, fetchFromGitHub }:
{ {
kmscon = { kmscon = {
pname = "kmscon"; pname = "kmscon";
version = "95ae9f869e01c5b26683c37a98a71b7551603d1c"; version = "b65f4269b03de580923ab390bde795e7956b633f";
src = fetchgit { src = fetchFromGitHub ({
url = "https://github.com/Aetf/kmscon"; owner = "Aetf";
rev = "95ae9f869e01c5b26683c37a98a71b7551603d1c"; repo = "kmscon";
rev = "b65f4269b03de580923ab390bde795e7956b633f";
fetchSubmodules = false; fetchSubmodules = false;
deepClone = false; sha256 = "sha256-OnBGdg+EU6ddjebUb+PbXJgIXTcUBL1p4CATlPWsypk=";
leaveDotGit = false; });
sha256 = "1f7ifzafjrrwr5d477xjvx8n8rh2ljq9ms5c06xlb2cyi28jvgaf";
};
}; };
} }

View file

@ -4,7 +4,7 @@ final: prev: {
# then, call packages with `final.callPackage` # then, call packages with `final.callPackage`
kmscon = prev.kmscon.overrideAttrs (old: { kmscon = prev.kmscon.overrideAttrs (old: {
version = "unstable-2022-04-28"; version = "unstable-${final.sources.kmscon.version}";
src = final.sources.kmscon.src; src = final.sources.kmscon.src;
}); });