about summary refs log tree commit diff
path: root/pkgs/by-name/re/renode-unstable/package.nix
blob: 7f538ea342655892e6acd1d2cfdfce22f8770873 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ renode
, fetchurl
, buildUnstable ? true
}:

(renode.override {
  inherit buildUnstable;
}).overrideAttrs (finalAttrs: _: {
  pname = "renode-unstable";
  version = "1.14.0+20240314git7ff57f373";

  src = fetchurl {
    url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
    hash = "sha256-r9dI8g9GPa4QymFJagZLLynjTvQzR8IBIFOCSxZ3x7Q=";
  };
})