iaito: 5.8.0 -> 5.8.2

This commit is contained in:
Azat Bahawi 2023-02-08 23:50:21 +03:00
parent 09d38c4d14
commit 0500164fcf
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B

View File

@ -13,14 +13,14 @@
stdenv.mkDerivation rec {
pname = "iaito";
version = "5.8.0";
version = "5.8.2";
srcs = [
(fetchFromGitHub rec {
owner = "radareorg";
repo = "iaito";
rev = version;
hash = "sha256-LqJu30Bp+JgB+y3MDyPVuFmEoXTpfA7K2pxv1ZCABx0=";
hash = "sha256-6Do06u9axqH+DpGASEce8j3iGlrkIZGv50seyazOo1w=";
name = repo;
})
(fetchFromGitHub rec {
@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
postBuild = ''
pushd ../../../iaito-translations
make build PREFIX=$out
make build -j$NIX_BUILD_CORES PREFIX=$out
popd
'';
@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
install -m644 -Dt $out/share/pixmaps ../img/iaito-o.svg
pushd ../../../iaito-translations
make install PREFIX=$out -j$NIX_BUILD_CORES
make install -j$NIX_BUILD_CORES PREFIX=$out
popd
runHook postInstall