Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
octave.pkgs.windows: init at 1.5.0
  • Loading branch information
KarlJoad authored and doronbehar committed Feb 24, 2021
1 parent 487f5ba commit 04129d3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/development/octave-modules/windows/default.nix
@@ -0,0 +1,21 @@
{ buildOctavePackage
, lib
, fetchurl
}:

buildOctavePackage rec {
pname = "windows";
version = "1.5.0";

src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "05bsf3q816b9vwgmjdm761ybhmk8raq6dzxqvd11brma0granx3a";
};

meta = with lib; {
homepage = "https://octave.sourceforge.io/windows/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Provides COM interface and additional functionality on Windows";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/octave-packages.nix
Expand Up @@ -215,4 +215,6 @@ makeScope newScope (self:
freewrl = null;
};

windows = callPackage ../development/octave-modules/windows { };

})

0 comments on commit 04129d3

Please sign in to comment.