2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchgit }:
|
2018-02-17 10:12:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ministat";
|
2018-02-17 10:12:30 +01:00
|
|
|
version = "20150715-1";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.decadent.org.uk/git/ministat.git";
|
|
|
|
rev = "refs/tags/debian/${version}";
|
|
|
|
sha256 = "1p4g0yqgsy4hiqhr8gqp8d38zxzrss5qz70s0bw3i2pg4w668k6f";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patch -p1 < debian/patches/fix-ctype-usage.patch
|
|
|
|
patch -p1 < debian/patches/not-bsd
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
|
|
cp ministat $out/bin
|
|
|
|
cp ministat.1 $out/share/man/man1/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-02-17 10:12:30 +01:00
|
|
|
description = "Simple tool for statistical comparison of data sets";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://git.decadent.org.uk/gitweb/?p=ministat.git";
|
2018-02-17 10:12:30 +01:00
|
|
|
license = licenses.beerware;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|