nixpkgs/pkgs/tools/misc/datamash/default.nix
Ryan Mulligan 0724300b53 datamash: 1.2 -> 1.3
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/chqcg1al11i9hbk156k4dsn8rnigwiap-datamash-1.3/bin/datamash --help` got 0 exit code
- ran `/nix/store/chqcg1al11i9hbk156k4dsn8rnigwiap-datamash-1.3/bin/datamash --version` and found version 1.3
- ran `/nix/store/chqcg1al11i9hbk156k4dsn8rnigwiap-datamash-1.3/bin/datamash --help` and found version 1.3
- found 1.3 with grep in /nix/store/chqcg1al11i9hbk156k4dsn8rnigwiap-datamash-1.3
- directory tree listing: https://gist.github.com/0a3f8ea7a3daa6dd6ff2888a8298d6f7
2018-03-17 15:26:11 -07:00

21 lines
588 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "datamash-${version}";
version = "1.3";
src = fetchurl {
url = "mirror://gnu/datamash/${name}.tar.gz";
sha256 = "19jpcv4ryvbz0476d6dgpxpbjkpmih4q84wj06nslls338bm5fzf";
};
meta = with stdenv.lib; {
description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files";
homepage = http://www.gnu.org/software/datamash/;
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub vrthra ];
};
}