nixpkgs/pkgs/shells/oil/default.nix

43 lines
1 KiB
Nix
Raw Normal View History

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