mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
commit
46e691eefb
2 changed files with 38 additions and 0 deletions
36
pkgs/shells/oil/default.nix
Normal file
36
pkgs/shells/oil/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, lib, fetchurl, coreutils }:
|
||||||
|
let
|
||||||
|
version = "0.0.0";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "oil-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
|
||||||
|
sha256 = "1mvyvvzw149piwa7xdl3byyn7h31p4cnrf3w9dxr5qfd9vc4gmsm";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5106,6 +5106,8 @@ with pkgs;
|
||||||
|
|
||||||
oh = callPackage ../shells/oh { };
|
oh = callPackage ../shells/oh { };
|
||||||
|
|
||||||
|
oil = callPackage ../shells/oil { };
|
||||||
|
|
||||||
pash = callPackage ../shells/pash { };
|
pash = callPackage ../shells/pash { };
|
||||||
|
|
||||||
tcsh = callPackage ../shells/tcsh { };
|
tcsh = callPackage ../shells/tcsh { };
|
||||||
|
|
Loading…
Reference in a new issue