lol

Merge pull request #258964 from cafkafk/cafk-imhex-1.31.0

authored by

Artturi and committed by
GitHub
2cedfab9 32ce8e70

+8 -7
+8 -5
pkgs/applications/editors/imhex/default.nix pkgs/by-name/im/imhex/package.nix
··· 22 }: 23 24 let 25 - version = "1.30.1"; 26 27 patterns_src = fetchFromGitHub { 28 owner = "WerWolv"; 29 repo = "ImHex-Patterns"; 30 - rev = "ImHex-v${version}"; 31 hash = "sha256-lTTXu9RxoD582lXWI789gNcWvJmxmBIlBRIiyY3DseM="; 32 }; 33 ··· 40 fetchSubmodules = true; 41 owner = "WerWolv"; 42 repo = pname; 43 - rev = "v${version}"; 44 - hash = "sha256-3s9Dgdhl+k2KjMoSHNl59YOoCEwqK+37DOzKdGP88/4="; 45 }; 46 47 nativeBuildInputs = [ cmake llvm python3 perl pkg-config rsync ]; ··· 81 description = "Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM"; 82 homepage = "https://github.com/WerWolv/ImHex"; 83 license = with licenses; [ gpl2Only ]; 84 - maintainers = with maintainers; [ luis kashw2 ]; 85 platforms = platforms.linux; 86 }; 87 }
··· 22 }: 23 24 let 25 + # FIXME: unstable, stable needs #252945 (details in #258964) 26 + # Next version bump should be stabilized 27 + version = "unstable-2023-10-01"; 28 + patterns_version = "1.31.0"; 29 30 patterns_src = fetchFromGitHub { 31 owner = "WerWolv"; 32 repo = "ImHex-Patterns"; 33 + rev = "ImHex-v${patterns_version}"; 34 hash = "sha256-lTTXu9RxoD582lXWI789gNcWvJmxmBIlBRIiyY3DseM="; 35 }; 36 ··· 43 fetchSubmodules = true; 44 owner = "WerWolv"; 45 repo = pname; 46 + rev = "a62ede784018f9d5aaf40587f71a1271429ab50b"; 47 + hash = "sha256-L3ncmM7Ro60DvOF/Y0fjo2Smlw2LL8cPa8H6yVGdGAk="; 48 }; 49 50 nativeBuildInputs = [ cmake llvm python3 perl pkg-config rsync ]; ··· 84 description = "Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM"; 85 homepage = "https://github.com/WerWolv/ImHex"; 86 license = with licenses; [ gpl2Only ]; 87 + maintainers = with maintainers; [ luis kashw2 cafkafk ]; 88 platforms = platforms.linux; 89 }; 90 }
-2
pkgs/top-level/all-packages.nix
··· 33068 33069 imgp = python3Packages.callPackage ../applications/graphics/imgp { }; 33070 33071 - imhex = callPackage ../applications/editors/imhex { }; 33072 - 33073 inframap = callPackage ../applications/networking/cluster/inframap { }; 33074 33075 inkcut = libsForQt5.callPackage ../applications/misc/inkcut { };
··· 33068 33069 imgp = python3Packages.callPackage ../applications/graphics/imgp { }; 33070 33071 inframap = callPackage ../applications/networking/cluster/inframap { }; 33072 33073 inkcut = libsForQt5.callPackage ../applications/misc/inkcut { };