2019-10-06 16:16:09 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, readline }:
|
2019-08-27 12:14:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "oil";
|
2020-02-08 22:33:43 +00:00
|
|
|
version = "0.7.0";
|
2017-08-06 18:17:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
|
2020-02-08 22:33:43 +00:00
|
|
|
sha256 = "12c9s462879adb6mwd3fqafk0dnqsm16s18rhym6cmzfzy8v8zm3";
|
2017-08-06 18:17:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs build
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
'';
|
|
|
|
|
2019-10-06 16:16:09 +01:00
|
|
|
buildInputs = [ readline ];
|
|
|
|
configureFlags = [ "--with-readline" ];
|
|
|
|
|
2017-08-06 18:17:00 +01:00
|
|
|
# Stripping breaks the bundles by removing the zip file from the end.
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = {
|
2019-08-27 12:14:02 +01:00
|
|
|
description = "A new unix shell";
|
2019-11-13 09:09:48 +00:00
|
|
|
homepage = "https://www.oilshell.org/";
|
2017-08-06 18:17:00 +01:00
|
|
|
|
|
|
|
license = with lib.licenses; [
|
|
|
|
psfl # Includes a portion of the python interpreter and standard library
|
|
|
|
asl20 # Licence for Oil itself
|
|
|
|
];
|
|
|
|
|
2019-10-08 09:39:58 +01:00
|
|
|
maintainers = with lib.maintainers; [ lheckemann alva ];
|
2017-08-06 18:17:00 +01:00
|
|
|
};
|
2019-10-06 22:01:33 +01:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/osh";
|
|
|
|
};
|
2017-08-06 18:17:00 +01:00
|
|
|
}
|