Skip to content

Commit

Permalink
almo: 0.9.5-alpha -> 0.9.6-alpha (NixOS#372857)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Jan 19, 2025
2 parents 8909ef0 + 2097821 commit 6082943
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pkgs/by-name/al/almo/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,15 @@
gcc,
python312Packages,
}:
let
version = "0.9.5-alpha";
in
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "almo";
inherit version;
version = "0.9.6-alpha";

src = fetchFromGitHub {
owner = "abap34";
repo = "almo";
tag = "v${version}";
sha256 = "sha256-Cz+XDJmdp+utzwm1c7ThTNS6kfNF6r4B16tnGQSCVMc=";
tag = "v${finalAttrs.version}";
hash = "sha256-eNigZUeUz6ZjQsn+0S6+Orv0WoLbqGgoA3+wG5ZcSBI=";
};

buildInputs = [
Expand Down Expand Up @@ -45,7 +42,8 @@ stdenv.mkDerivation {
license = lib.licenses.mit;
platforms = lib.platforms.all;
homepage = "https://github.com/abap34/almo";
changelog = "https://github.com/abap34/almo/releases/tag/${finalAttrs.src.tag}";
maintainers = with lib.maintainers; [ momeemt ];
mainProgram = "almo";
};
}
})

0 comments on commit 6082943

Please sign in to comment.