ksh: 93v -> 2020.0.0

This commit is contained in:
Franz Pletz 2019-11-02 23:34:37 +01:00
parent 74639e47a8
commit 35dd9c7dbf
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,14 +1,14 @@
{ stdenv, meson, ninja, fetchFromGitHub, which, python, libiconv }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "ksh";
version = "93v";
version = "2020.0.0";
src = fetchFromGitHub {
owner = "att";
repo = "ast";
rev = "b8d88244ae87857e7bbd6da230ffbbc51165df70";
sha256 = "12kf14n8vz36hnsy3wp6lnyv1841p7hcq25y1d78w532dil69lx9";
rev = version;
sha256 = "0cdxz0nhpq03gb9rd76fn0x1yzs2c8q289b7vcxnzlsrz1imz65j";
};
nativeBuildInputs = [ meson ninja which python ];