oil: init at 0.0.0

This commit is contained in:
Linus Heckemann 2017-08-06 18:17:00 +01:00
parent 147cd29fff
commit 434d3700d3
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, lib, fetchurl, coreutils }:
let
version = "0.0.0";
in
stdenv.mkDerivation {
name = "oil-${version}";
src = fetchurl {
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
sha256 = "1mvyvvzw149piwa7xdl3byyn7h31p4cnrf3w9dxr5qfd9vc4gmsm";
};
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 ];
};
}

View file

@ -5106,6 +5106,8 @@ with pkgs;
oh = callPackage ../shells/oh { };
oil = callPackage ../shells/oil { };
pash = callPackage ../shells/pash { };
tcsh = callPackage ../shells/tcsh { };