depot/third_party/nixpkgs/pkgs/by-name/re/renode-unstable/package.nix

17 lines
381 B
Nix
Raw Normal View History

{ renode
, fetchurl
, buildUnstable ? true
}:
(renode.override {
inherit buildUnstable;
}).overrideAttrs (finalAttrs: _: {
pname = "renode-unstable";
version = "1.14.0+20231229gita76dac0ae";
src = fetchurl {
url = "https://builds.renode.io/renode-${finalAttrs.version}.linux-portable.tar.gz";
hash = "sha256-fvwNN3sT8VZ7XJPrfpAbjSiuAB274QhuPeekwz0AU3c=";
};
})