renode-unstable: init at 1.14.0+20231229gita76dac0ae

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
Otavio Salvador 2023-12-29 22:54:34 -03:00
parent 3e98c29d35
commit db4f3f3831

View file

@ -0,0 +1,16 @@
{ 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=";
};
})