octave.pkgs.windows: init at 1.5.0

This commit is contained in:
Karl Hallsby 2021-01-06 12:16:44 -06:00 committed by Doron Behar
parent 487f5ba20d
commit 04129d3407
2 changed files with 23 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -215,4 +215,6 @@ makeScope newScope (self:
freewrl = null;
};
windows = callPackage ../development/octave-modules/windows { };
})