mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
17 lines
381 B
Nix
17 lines
381 B
Nix
{ renode
|
|
, fetchurl
|
|
, buildUnstable ? true
|
|
}:
|
|
|
|
(renode.override {
|
|
inherit buildUnstable;
|
|
}).overrideAttrs (finalAttrs: _: {
|
|
pname = "renode-unstable";
|
|
version = "1.15.0+20240320git97be875a3";
|
|
|
|
src = fetchurl {
|
|
url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
|
|
hash = "sha256-+1tOZ44fg/Z4n4gjPylRQlRE7KnL0AGcODlue/HLb3I=";
|
|
};
|
|
})
|