Skip to content

Commit

Permalink
Merge pull request #318451 from kashw2/giada
Browse files Browse the repository at this point in the history
giada: move to `finalAttrs`; cleanup
  • Loading branch information
Aleksanaa committed Jun 20, 2024
2 parents 7ca2484 + c502346 commit ae86f22
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkgs/applications/audio/giada/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
, nlohmann_json
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "giada";
version = "1.0.0";

src = fetchFromGitHub {
owner = "monocasual";
repo = pname;
rev = version;
sha256 = "sha256-vTOUS9mI4B3yRNnM2dNCH7jgMuD3ztdhe1FMgXUIt58=";
repo = "giada";
rev = finalAttrs.version;
hash = "sha256-vTOUS9mI4B3yRNnM2dNCH7jgMuD3ztdhe1FMgXUIt58=";
fetchSubmodules = true;
};

Expand Down Expand Up @@ -66,12 +66,12 @@ stdenv.mkDerivation rec {
libXrandr
];

meta = with lib; {
meta = {
description = "Free, minimal, hardcore audio tool for DJs, live performers and electronic musicians";
mainProgram = "giada";
homepage = "https://giadamusic.com/";
license = licenses.gpl3;
maintainers = with maintainers; [ kashw2 ];
platforms = platforms.all;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ kashw2 ];
platforms = lib.platforms.all;
};
}
})

0 comments on commit ae86f22

Please sign in to comment.