frozen: unstable-2021-02-23 -> 1.7

Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
Marcin Serwin 2025-10-17 19:33:05 +02:00
parent 689a0c5dad
commit 13080f7735
No known key found for this signature in database
GPG key ID: DACFAC4EA0B194E0
2 changed files with 6 additions and 7 deletions

View file

@ -7,7 +7,7 @@ project(
'werror=true'
],
license: 'Apache-2.0',
version: '20210223'
version: '1.7'
)
library(

View file

@ -6,16 +6,15 @@
ninja,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "frozen";
# pin to a newer release if frozen releases again, see cesanta/frozen#72
version = "unstable-2021-02-23";
version = "1.7";
src = fetchFromGitHub {
owner = "cesanta";
repo = "frozen";
rev = "21f051e3abc2240d9a25b2add6629b38e963e102";
hash = "sha256-BpuYK9fbWSpeF8iPT8ImrV3CKKaA5RQ2W0ZQ03TciR0=";
tag = finalAttrs.version;
hash = "sha256-dOQb6wVufkqOSVZa2o8A1DLad0zvo2xQzmu09J2ZT7E=";
};
nativeBuildInputs = [
@ -41,4 +40,4 @@ stdenv.mkDerivation {
maintainers = with lib.maintainers; [ thillux ];
platforms = lib.platforms.unix;
};
}
})