lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 31 lines 597 B view raw
1{ buildOctavePackage 2, lib 3, fetchurl 4, pkg-config 5, nettle 6}: 7 8buildOctavePackage rec { 9 pname = "general"; 10 version = "2.1.3"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 sha256 = "sha256-amslJm3haXaAehdm6jYJxcGZl+ggUcnJc3i6YJ3QkyM="; 15 }; 16 17 nativeBuildInputs = [ 18 pkg-config 19 ]; 20 21 buildInputs = [ 22 nettle 23 ]; 24 25 meta = with lib; { 26 homepage = "https://octave.sourceforge.io/general/index.html"; 27 license = licenses.gpl3Plus; 28 maintainers = with maintainers; [ KarlJoad ]; 29 description = "General tools for Octave"; 30 }; 31}