From 7459b7ce657eba6809eb0c98ddae4b01205a8ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Tue, 9 Jul 2024 07:52:14 -0400 Subject: [PATCH] ossia-score: 3.2.3-3 -> 3.2.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update pkgs/by-name/os/ossia-score/package.nix - Remove unused stdenv - Support AArch64 Co-authored-by: Rémi NICOLE --- pkgs/by-name/os/ossia-score/package.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/os/ossia-score/package.nix b/pkgs/by-name/os/ossia-score/package.nix index 9dca52e18195..8eb6df45db9a 100644 --- a/pkgs/by-name/os/ossia-score/package.nix +++ b/pkgs/by-name/os/ossia-score/package.nix @@ -1,5 +1,4 @@ -{ stdenv -, lib +{ lib , fetchFromGitHub , cmake , ninja @@ -42,15 +41,15 @@ # TODO: figure out LLVM jit # assert lib.versionAtLeast llvm.version "15"; -stdenv.mkDerivation (finalAttrs: { +clangStdenv.mkDerivation (finalAttrs: { pname = "ossia-score"; - version = "3.2.3-3"; + version = "3.2.4"; src = fetchFromGitHub { owner = "ossia"; repo = "score"; - rev = "v3.2.3-3"; - hash = "sha256-xRqsMKwuejbl+5ljYMFhQv/j1MfnFH5MGIn9rCQG/ro="; + rev = "v${finalAttrs.version}"; + hash = "sha256-O9v7hhBHVi4OuuCebG3bvjp/MOYu1iPv+lji/wS4O7o="; fetchSubmodules = true; }; @@ -152,7 +151,7 @@ stdenv.mkDerivation (finalAttrs: { the creation of interactive shows, museum installations, intermedia digital artworks, interactive music and more in an intuitive user interface. ''; - platforms = [ "x86_64-linux" ]; + platforms = platforms.linux; license = licenses.gpl3Only; maintainers = with maintainers; [ jcelerier minijackson ]; };