Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
  • Loading branch information
luxzeitlos and AndersonTorres authored Feb 5, 2024
1 parent d616da9 commit 8ac146b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/applications/science/medicine/aliza/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
, qtbase
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "aliza";
version = "1.9.7";

src = fetchFromGitHub {
owner = "AlizaMedicalImaging";
repo = "AlizaMS";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-bambl3NP42KEwh6NPb8jhQlGqaUCSt6QuzUmmBnEAQw=";
};

Expand All @@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
qtbase
];

strictDeps = true;

cmakeFlags = [
"-DCMAKE_BUILD_TYPE:STRING=Release"
"-DALIZA_QT_VERSION:STRING=5"
Expand Down

0 comments on commit 8ac146b

Please sign in to comment.