c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
16 lines
381 B
Nix
16 lines
381 B
Nix
{ renode
|
|
, fetchurl
|
|
, buildUnstable ? true
|
|
}:
|
|
|
|
(renode.override {
|
|
inherit buildUnstable;
|
|
}).overrideAttrs (finalAttrs: _: {
|
|
pname = "renode-unstable";
|
|
version = "1.14.0+20240226git732d357b4";
|
|
|
|
src = fetchurl {
|
|
url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
|
|
hash = "sha256-08xV/6ch6dWA4pwg8tuDywYhQ4ZIFRD5zegojDZtAHE=";
|
|
};
|
|
})
|