2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, lib, fetchurl }:
|
2017-08-06 18:17:00 +01:00
|
|
|
let
|
2019-07-16 03:13:15 +01:00
|
|
|
version = "0.6.0";
|
2017-08-06 18:17:00 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "oil-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
|
2019-07-16 03:13:15 +01:00
|
|
|
sha256 = "1dw4mgnlmaxlfygasfihgvbj32d3m9w6k5j7azb9d9lp35f3l7hl";
|
2017-08-06 18:17:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|