nixfmt-rfc-style
There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
This commit is contained in:
@@ -3,14 +3,15 @@
|
||||
stdenv,
|
||||
openssl,
|
||||
lua,
|
||||
fetchFromGitHub
|
||||
}: stdenv.mkDerivation {
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
pname = "fetch-freebsd";
|
||||
version = "v12.0.11";
|
||||
src = fetchFromGitHub {
|
||||
owner= "jrmarino";
|
||||
owner = "jrmarino";
|
||||
repo = "fetch-freebsd";
|
||||
rev = "v12.0.11";
|
||||
rev = "v12.0.11";
|
||||
hash = "sha256-nLNqjQFV9x2NntBdUlabxjS9q+er28zi8uXjWvCK2Ps=";
|
||||
};
|
||||
cmakeFlags = [
|
||||
@@ -22,7 +23,10 @@
|
||||
$CC -shared -o fetch-lua.so ${./lua-glue.c} -I$src -Llibrary -lssl -lfetch -llua
|
||||
'';
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ lua openssl ];
|
||||
buildInputs = [
|
||||
lua
|
||||
openssl
|
||||
];
|
||||
postInstall = ''
|
||||
rm -r $out/lib/lib*.a
|
||||
mkdir -p $out/lib/lua/${lua.luaversion}
|
||||
|
Reference in New Issue
Block a user