nixpkgs/pkgs/shells/oil/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.5 KiB
Nix
Raw Normal View History

2023-01-27 03:40:13 +00:00
{ stdenv, lib, fetchurl, symlinkJoin, withReadline ? true, readline }:
2019-08-27 11:14:02 +00:00
2023-01-27 03:40:13 +00:00
let
readline-all = symlinkJoin {
name = "readline-all"; paths = [ readline readline.dev ];
};
in
2019-08-27 11:14:02 +00:00
stdenv.mkDerivation rec {
pname = "oil";
2023-03-16 00:19:11 +00:00
version = "0.14.2";
2017-08-06 17:17:00 +00:00
src = fetchurl {
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
2023-03-16 00:19:11 +00:00
hash = "sha256-I/r/DhELLpKMnZqUh847F/uVPiCYF5b574cjP59+ZG0=";
2017-08-06 17:17:00 +00:00
};
postPatch = ''
patchShebangs build
2023-01-27 03:40:13 +00:00
# TODO: workaround for https://github.com/oilshell/oil/issues/1467
# check for removability on updates :)
substituteInPlace configure --replace "echo '#define HAVE_READLINE 1'" "echo '#define HAVE_READLINE 1' && return 0"
2017-08-06 17:17:00 +00:00
'';
preInstall = ''
mkdir -p $out/bin
'';
2022-05-06 18:39:28 +00:00
strictDeps = true;
buildInputs = lib.optional withReadline readline;
2023-01-27 03:40:13 +00:00
configureFlags = [
"--datarootdir=${placeholder "out"}"
] ++ lib.optionals withReadline [
"--with-readline"
"--readline=${readline-all}"
];
2019-10-06 15:16:09 +00:00
2017-08-06 17:17:00 +00:00
# Stripping breaks the bundles by removing the zip file from the end.
dontStrip = true;
meta = {
2019-08-27 11:14:02 +00:00
description = "A new unix shell";
2019-11-13 09:09:48 +00:00
homepage = "https://www.oilshell.org/";
2017-08-06 17:17:00 +00:00
license = with lib.licenses; [
psfl # Includes a portion of the python interpreter and standard library
asl20 # Licence for Oil itself
];
2021-11-20 23:06:38 +00:00
platforms = lib.platforms.all;
2019-10-08 08:39:58 +00:00
maintainers = with lib.maintainers; [ lheckemann alva ];
2021-02-10 22:10:11 +00:00
changelog = "https://www.oilshell.org/release/${version}/changelog.html";
2017-08-06 17:17:00 +00:00
};
2019-10-06 21:01:33 +00:00
passthru = {
2021-05-14 04:39:34 +00:00
shellPath = "/bin/osh";
2019-10-06 21:01:33 +00:00
};
2017-08-06 17:17:00 +00:00
}