mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
commit
e831ebce93
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchurl, fetchpatch }:
|
||||
{ stdenv, lib, fetchurl, fetchpatch, readline }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "oil";
|
||||
|
@ -26,6 +26,9 @@ stdenv.mkDerivation rec {
|
|||
mkdir -p $out/bin
|
||||
'';
|
||||
|
||||
buildInputs = [ readline ];
|
||||
configureFlags = [ "--with-readline" ];
|
||||
|
||||
# Stripping breaks the bundles by removing the zip file from the end.
|
||||
dontStrip = true;
|
||||
|
||||
|
@ -40,4 +43,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
maintainers = with lib.maintainers; [ lheckemann ];
|
||||
};
|
||||
|
||||
passthru = {
|
||||
shellPath = "/bin/osh";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue