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+20240308git65e3eb0f5";
|
|
|
|
src = fetchurl {
|
|
url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
|
|
hash = "sha256-s0SK4Ixl2hTbh6X3nddjKNpnxePjcd/SRXnP/xytInc=";
|
|
};
|
|
})
|