aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/shells/oil/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/oil/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/oil/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/oil/default.nix b/nixpkgs/pkgs/shells/oil/default.nix
new file mode 100644
index 00000000000..019a66c77eb
--- /dev/null
+++ b/nixpkgs/pkgs/shells/oil/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, lib, fetchurl, readline }:
+
+stdenv.mkDerivation rec {
+ pname = "oil";
+ version = "0.8.pre4";
+
+ src = fetchurl {
+ url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
+ sha256 = "07kj86hrvlz9f1gh3qv4hdaz3qnb4a2qf0dnxhd2r0qilrkjanxh";
+ };
+
+ postPatch = ''
+ patchShebangs build
+ '';
+
+ preInstall = ''
+ mkdir -p $out/bin
+ '';
+
+ buildInputs = [ readline ];
+ configureFlags = [ "--with-readline" ];
+
+ # Stripping breaks the bundles by removing the zip file from the end.
+ dontStrip = true;
+
+ meta = {
+ description = "A new unix shell";
+ homepage = "https://www.oilshell.org/";
+
+ 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 alva ];
+ };
+
+ passthru = {
+ shellPath = "/bin/osh";
+ };
+}