Merge pull request #301345 from otavio/renode

renode: use robotframework at 6.0.2
This commit is contained in:
Nick Cao 2024-04-07 16:33:30 -04:00 committed by GitHub
commit 974b06760b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchurl
, autoPatchelfHook
, makeWrapper
@ -17,7 +18,15 @@ let
psutil
pyyaml
requests
robotframework
(robotframework.overrideDerivation (oldAttrs: {
src = fetchFromGitHub {
owner = "robotframework";
repo = "robotframework";
rev = "v6.0.2";
hash = "sha256-c7pPcDgqyqWQtiMbLQbQd0nAgx4TIFUFHrlBVDNdr8M=";
};
}))
];
in
stdenv.mkDerivation (finalAttrs: {