your_spotify: 1.11.0 -> 1.12.0 (#366529)
[NixPkgs.git] / pkgs / development / octave-modules / miscellaneous / default.nix
blobe39ad4bd293113da2d293831d76cb84f9555bbb7
2   buildOctavePackage,
3   lib,
4   fetchurl,
5   # Build-time dependencies
6   ncurses, # >= 5
7   units,
8 }:
10 buildOctavePackage rec {
11   pname = "miscellaneous";
12   version = "1.3.1";
14   src = fetchurl {
15     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
16     sha256 = "sha256-VxIReiXTHRJmADZGpA6B59dCdDPCY2bkJt/6mrir1kg=";
17   };
19   buildInputs = [
20     ncurses
21   ];
23   propagatedBuildInputs = [
24     units
25   ];
27   meta = with lib; {
28     homepage = "https://octave.sourceforge.io/miscellaneous/index.html";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ KarlJoad ];
31     description = "Miscellaneous tools that don't fit somewhere else";
32   };