octave.pkgs.dataframe: init at 1.2.0
This commit is contained in:
parent
abd0c2290a
commit
a2365751bc
21
pkgs/development/octave-modules/dataframe/default.nix
Normal file
21
pkgs/development/octave-modules/dataframe/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "dataframe";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "10ara084gkb7d5vxv9qv7zpj8b4mm5y06nccrdy3skw5nfbb4djx";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/dataframe/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Data manipulation toolbox similar to R data.frame";
|
||||
};
|
||||
}
|
@ -73,6 +73,8 @@ makeScope newScope (self:
|
||||
|
||||
database = callPackage ../development/octave-modules/database { };
|
||||
|
||||
dataframe = callPackage ../development/octave-modules/dataframe { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user