summary refs log blame commit diff
path: root/pkgs/shells/oil/default.nix
blob: d019457ab8a16a5591f35606848b1cde1d946903 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
   
                        





                                                                    
                                                                    

























                                                                              
{ stdenv, lib, fetchurl }:
let
  version = "0.6.pre15";
in
stdenv.mkDerivation {
  name = "oil-${version}";

  src = fetchurl {
    url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
    sha256 = "1azdmicv39rp30msl6fpw6921gi6ib8lxiyc8kanljqk5d7zg4p6";
  };

  postPatch = ''
    patchShebangs build
  '';

  preInstall = ''
    mkdir -p $out/bin
  '';

  # Stripping breaks the bundles by removing the zip file from the end.
  dontStrip = true;

  meta = {
    homepage = https://www.oilshell.org/;

    description = "A new unix shell, still in its early stages";

    license = with lib.licenses; [
      psfl # Includes a portion of the python interpreter and standard library
      asl20 # Licence for Oil itself
    ];

    maintainers = with lib.maintainers; [ lheckemann ];
  };
}