diff --git a/pkgs/development/octave-modules/control/default.nix b/pkgs/development/octave-modules/control/default.nix index 66ad9f9c6e2ca..570c0856217a4 100644 --- a/pkgs/development/octave-modules/control/default.nix +++ b/pkgs/development/octave-modules/control/default.nix @@ -23,10 +23,10 @@ buildOctaveLibrary rec { lapack blas ]; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "Computer-Aided Control System Design (CACSD) Tools for GNU Octave, based on the proven SLICOT Library"; }; } diff --git a/pkgs/development/octave-modules/general/default.nix b/pkgs/development/octave-modules/general/default.nix index 145919039c6d1..05ad364cdc039 100644 --- a/pkgs/development/octave-modules/general/default.nix +++ b/pkgs/development/octave-modules/general/default.nix @@ -19,10 +19,10 @@ buildOctaveLibrary rec { nettle ]; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "General tools for Octave"; }; } diff --git a/pkgs/development/octave-modules/io/default.nix b/pkgs/development/octave-modules/io/default.nix index 416a8da5f7056..2513a45ac512b 100644 --- a/pkgs/development/octave-modules/io/default.nix +++ b/pkgs/development/octave-modules/io/default.nix @@ -24,10 +24,10 @@ buildOctaveLibrary rec { cp -r doc $out/ ''; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = with stdenv.lib.licenses; [ gpl3Plus bsd2 ]; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = with licenses; [ gpl3Plus bsd2 ]; + maintainers = with maintainers; [ KarlJoad ]; description = "Input/Output in external formats"; }; } diff --git a/pkgs/development/octave-modules/level-set/default.nix b/pkgs/development/octave-modules/level-set/default.nix index 30f6ef3fd6a0c..7329424ca402f 100644 --- a/pkgs/development/octave-modules/level-set/default.nix +++ b/pkgs/development/octave-modules/level-set/default.nix @@ -12,11 +12,11 @@ buildOctaveLibrary rec { sha256 = "1rb318gs0avkn5j23xrjwhra4y2f13bahc5v4x5wrm978bcs5xlp"; }; - meta = { + meta = with stdenv.lib; { name = "Level Set"; homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "Routines for calculating the time-evolution of the level-set equation and extracting geometric information from the level-set function"; broken = true; # During a simple build, I received the following error while building the package diff --git a/pkgs/development/octave-modules/linear-algebra/default.nix b/pkgs/development/octave-modules/linear-algebra/default.nix index facecf1c3beb1..bdf45b9a170b1 100644 --- a/pkgs/development/octave-modules/linear-algebra/default.nix +++ b/pkgs/development/octave-modules/linear-algebra/default.nix @@ -13,10 +13,10 @@ buildOctaveLibrary rec { sha256 = "1wwjpxp9vjc6lszh0z3kgy4hyzpib8rvvh6b74ijh9qk9r9nmvjk"; }; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - licenses = with stdenv.lib.licenses; [ gpl3Plus lgpl3Plus bsd ]; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + licenses = with licenses; [ gpl3Plus lgpl3Plus bsd ]; + maintainers = with maintainers; [ KarlJoad ]; description = "Additional linear algebra code, including matrix functions"; }; } diff --git a/pkgs/development/octave-modules/ltfat/default.nix b/pkgs/development/octave-modules/ltfat/default.nix index c9d50deb30293..3f460e85f8afd 100644 --- a/pkgs/development/octave-modules/ltfat/default.nix +++ b/pkgs/development/octave-modules/ltfat/default.nix @@ -31,11 +31,11 @@ buildOctaveLibrary rec { jre ]; - meta = { + meta = with stdenv.lib; { name = "The Large Time-Frequency Analysis Toolbox"; homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "Toolbox for working with time-frequency analysis, wavelets and signal processing"; longDescription = '' The Large Time/Frequency Analysis Toolbox (LTFAT) is a Matlab/Octave diff --git a/pkgs/development/octave-modules/signal/default.nix b/pkgs/development/octave-modules/signal/default.nix index a0491084b32b0..9dbc073b9c196 100644 --- a/pkgs/development/octave-modules/signal/default.nix +++ b/pkgs/development/octave-modules/signal/default.nix @@ -17,10 +17,10 @@ buildOctaveLibrary rec { control ]; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "Signal processing tools, including filtering, windowing and display functions"; }; } diff --git a/pkgs/development/octave-modules/symbolic/default.nix b/pkgs/development/octave-modules/symbolic/default.nix index 7a4bd9c65e76a..7b4edad396afe 100644 --- a/pkgs/development/octave-modules/symbolic/default.nix +++ b/pkgs/development/octave-modules/symbolic/default.nix @@ -18,10 +18,10 @@ buildInputs = [ pythonEnv ]; - meta = { + meta = with stdenv.lib; { homepage = "https://octave.sourceforge.io/${pname}/index.html"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.pkgs.maintainers; [ KarlJoad ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ KarlJoad ]; description = "Adds symbolic calculation features to GNU Octave"; }; }).overrideAttrs (oldAttrs: rec {