mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
s6-portable-utils: readded config flags
This commit is contained in:
parent
384bc23bee
commit
5c18f3760d
1 changed files with 10 additions and 13 deletions
|
@ -1,9 +1,6 @@
|
|||
{ stdenv, fetchFromGitHub, skalibs, gcc }:
|
||||
|
||||
with stdenv.lib;
|
||||
let
|
||||
cross = "";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "s6-portable-utils-${version}";
|
||||
|
@ -17,18 +14,18 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
dontDisableStatic = true;
|
||||
|
||||
|
||||
nativeBuildInputs = []
|
||||
++ optional stdenv.isDarwin gcc;
|
||||
|
||||
++ optional stdenv.isDarwin gcc;
|
||||
|
||||
configureFlags = [
|
||||
#"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
||||
#"--with-include=${skalibs}/include"
|
||||
"--with-lib=${skalibs}/lib"
|
||||
"--with-dynlib=${skalibs}/lib"
|
||||
];
|
||||
|
||||
|
||||
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
||||
"--with-include=${skalibs}/include"
|
||||
"--with-lib=${skalibs}/lib"
|
||||
"--with-dynlib=${skalibs}/lib"
|
||||
];
|
||||
|
||||
|
||||
meta = {
|
||||
homepage = http://www.skarnet.org/software/s6-portable-utils/;
|
||||
description = "A set of tiny general Unix utilities optimized for simplicity and small size";
|
||||
|
|
Loading…
Reference in a new issue