From 6968b49920df1704f59f73134d4da5fd8595d37f Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 23 Jun 2022 00:18:41 -0400 Subject: [PATCH] bump: kmscon --- pkgs/_sources/generated.json | 21 +++++++++++++++++++++ pkgs/_sources/generated.nix | 17 ++++++++--------- pkgs/default.nix | 2 +- 3 files changed, 30 insertions(+), 10 deletions(-) create mode 100644 pkgs/_sources/generated.json diff --git a/pkgs/_sources/generated.json b/pkgs/_sources/generated.json new file mode 100644 index 0000000..f90db8d --- /dev/null +++ b/pkgs/_sources/generated.json @@ -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" + } +} \ No newline at end of file diff --git a/pkgs/_sources/generated.nix b/pkgs/_sources/generated.nix index f061f34..6ea8485 100644 --- a/pkgs/_sources/generated.nix +++ b/pkgs/_sources/generated.nix @@ -1,16 +1,15 @@ # This file was generated by nvfetcher, please do not modify it manually. -{ fetchgit, fetchurl }: +{ fetchgit, fetchurl, fetchFromGitHub }: { kmscon = { pname = "kmscon"; - version = "95ae9f869e01c5b26683c37a98a71b7551603d1c"; - src = fetchgit { - url = "https://github.com/Aetf/kmscon"; - rev = "95ae9f869e01c5b26683c37a98a71b7551603d1c"; + version = "b65f4269b03de580923ab390bde795e7956b633f"; + src = fetchFromGitHub ({ + owner = "Aetf"; + repo = "kmscon"; + rev = "b65f4269b03de580923ab390bde795e7956b633f"; fetchSubmodules = false; - deepClone = false; - leaveDotGit = false; - sha256 = "1f7ifzafjrrwr5d477xjvx8n8rh2ljq9ms5c06xlb2cyi28jvgaf"; - }; + sha256 = "sha256-OnBGdg+EU6ddjebUb+PbXJgIXTcUBL1p4CATlPWsypk="; + }); }; } diff --git a/pkgs/default.nix b/pkgs/default.nix index 36607a6..d2ed73d 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -4,7 +4,7 @@ final: prev: { # then, call packages with `final.callPackage` kmscon = prev.kmscon.overrideAttrs (old: { - version = "unstable-2022-04-28"; + version = "unstable-${final.sources.kmscon.version}"; src = final.sources.kmscon.src; });