readstat: init at 1.1.8

The readstat package allows for reading and manipulating
SAS/Stata/SPSS data files.  This can be useful for interacting and
interoperating with datasets distributed in these formats.
This commit is contained in:
Samuel W. Flint 2022-09-21 12:21:13 -05:00
parent 24f881299b
commit 35d5dd7989
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
name = "readstat";
version = "1.1.8";
src = fetchFromGitHub {
owner = "WizardMac";
repo = "ReadStat";
rev = "v${version}";
sha256 = "1r04lq45h1yn34v1mgfiqjfzyaqv4axqlby0nkandamcsqyhc7y4";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
meta = {
homepage = "https://github.com/WizardMac/ReadStat";
description = "Command-line tool (+ C library) for converting SAS, Stata, and SPSS files";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ swflint ];
};
}

View file

@ -10510,6 +10510,8 @@ with pkgs;
read-edid = callPackage ../os-specific/linux/read-edid { };
readstat = callPackage ../applications/science/math/readstat { };
redir = callPackage ../tools/networking/redir { };
redmine = callPackage ../applications/version-management/redmine { };