Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 21 lines 525 B view raw
1{ buildOctavePackage 2, lib 3, fetchurl 4}: 5 6buildOctavePackage rec { 7 pname = "dataframe"; 8 version = "1.2.0"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 sha256 = "10ara084gkb7d5vxv9qv7zpj8b4mm5y06nccrdy3skw5nfbb4djx"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://octave.sourceforge.io/dataframe/index.html"; 17 license = licenses.gpl3Plus; 18 maintainers = with maintainers; [ KarlJoad ]; 19 description = "Data manipulation toolbox similar to R data.frame"; 20 }; 21}