Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. { stdenv, fetchurl, meson, ninja, fetchFromGitHub }:
  2.  
  3. stdenv.mkDerivation rec {
  4. name = "ksh-${version}";
  5. version = "93v";
  6.  
  7. src = fetchFromGitHub {
  8. owner = "att";
  9. repo = "ast";
  10. rev = "b8d88244ae87857e7bbd6da230ffbbc51165df70";
  11. sha256 = "12kf14n8vz36hnsy3wp6lnyv1841p7hcq25y1d78w532dil69lx9";
  12. };
  13.  
  14. doCheck = true;
  15.  
  16. # unpackPhase = true;
  17.  
  18. nativeBuildInputs = [ meson ninja ];
  19. BuildInputs = [ meson ninja ];
  20.  
  21. meta = with stdenv.lib; {
  22. description = "KornShell Command And Programming Language";
  23. longDescription = ''
  24. The KornShell language was designed and developed by David G. Korn at
  25. AT&T Bell Laboratories. It is an interactive command language that
  26. provides access to the UNIX system and to many other systems, on the
  27. many different computers and workstations on which it is implemented.
  28. '';
  29. homepage = http://www.kornshell.com/i;
  30. license = licenses.cpl;
  31. maintainers = with maintainers; [ ];
  32. platforms = platforms.all;
  33. };
  34.  
  35. passthru = {
  36. shellPath = "/bin/ksh";
  37. };
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement