From 99413d0f20a9d90db4ec1327553f16564610a86b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 25 Apr 2022 07:44:19 +0000 Subject: [PATCH 1/2] cpufetch: 1.01 -> 1.02 --- pkgs/tools/misc/cpufetch/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/cpufetch/default.nix b/pkgs/tools/misc/cpufetch/default.nix index ca38cf899872..80909d63e35f 100644 --- a/pkgs/tools/misc/cpufetch/default.nix +++ b/pkgs/tools/misc/cpufetch/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "cpufetch"; - version = "1.01"; + version = "1.02"; src = fetchFromGitHub { owner = "Dr-Noob"; repo = "cpufetch"; rev = "v${version}"; - sha256 = "sha256-vae/59eEDuZUDsTHE93mi+L8WBr3H4zp+mzXg7WWusA="; + sha256 = "sha256-bhw7+z4/50MrC5WyexHhtzmqnovwiA9X6Q2TcznDYZM="; }; nativeBuildInputs = [ From a40607f7afa163c7ad89715b2aaa76c82e59cd00 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Mon, 25 Apr 2022 21:01:28 +0800 Subject: [PATCH 2/2] cpufetch: update meta.license --- pkgs/tools/misc/cpufetch/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/cpufetch/default.nix b/pkgs/tools/misc/cpufetch/default.nix index 80909d63e35f..1407f875b21b 100644 --- a/pkgs/tools/misc/cpufetch/default.nix +++ b/pkgs/tools/misc/cpufetch/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Simplistic yet fancy CPU architecture fetching tool"; - license = licenses.mit; + license = licenses.gpl2Only; homepage = "https://github.com/Dr-Noob/cpufetch"; changelog = "https://github.com/Dr-Noob/cpufetch/releases/tag/v${version}"; maintainers = with maintainers; [ devhell ];