diff options
author | Karl Hallsby <karl@hallsby.com> | 2021-01-06 10:49:38 -0600 |
---|---|---|
committer | Doron Behar <doron.behar@gmail.com> | 2021-02-24 21:00:48 +0200 |
commit | a2365751bc0b61d10b109839c9cc32eb7ef252aa (patch) | |
tree | 28985fe8d6931b0240b8d1745fbc0709115244fe /pkgs/development/octave-modules | |
parent | abd0c2290a3defe14957cb4347430275604e2898 (diff) |
octave.pkgs.dataframe: init at 1.2.0
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r-- | pkgs/development/octave-modules/dataframe/default.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/dataframe/default.nix b/pkgs/development/octave-modules/dataframe/default.nix new file mode 100644 index 0000000000000..8f145f0d510c2 --- /dev/null +++ b/pkgs/development/octave-modules/dataframe/default.nix @@ -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"; + }; +} |