e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
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+20240106git1b3952c2c";
|
|
|
|
src = fetchurl {
|
|
url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
|
|
hash = "sha256-tDo/01jYoq1Qg8h0BS4BQSPh3rsINpe72eMk9UBWgR0=";
|
|
};
|
|
})
|