2016-06-04 17:09:19 +00:00
|
|
|
|
{ config, pkgs, ... }:
|
2016-02-14 15:43:44 +00:00
|
|
|
|
with config.krebs.lib;
|
2016-02-13 15:45:26 +00:00
|
|
|
|
rec {
|
|
|
|
|
execve = name: { filename, argv ? null, envp ? {}, destination ? "" }: let
|
|
|
|
|
in writeC name { inherit destination; } ''
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
static char *const filename = ${toC filename};
|
|
|
|
|
|
|
|
|
|
${if argv == null
|
|
|
|
|
then /* Propagate arguments */ ''
|
|
|
|
|
#define MAIN_ARGS int argc, char **argv
|
|
|
|
|
''
|
|
|
|
|
else /* Provide fixed arguments */ ''
|
|
|
|
|
#define MAIN_ARGS void
|
|
|
|
|
static char *const argv[] = ${toC (argv ++ [null])};
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
static char *const envp[] = ${toC (
|
|
|
|
|
mapAttrsToList (k: v: "${k}=${v}") envp ++ [null]
|
|
|
|
|
)};
|
|
|
|
|
|
|
|
|
|
int main (MAIN_ARGS) {
|
|
|
|
|
execve(filename, argv, envp);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
'';
|
2016-02-08 00:23:06 +00:00
|
|
|
|
|
|
|
|
|
execveBin = name: cfg: execve name (cfg // { destination = "/bin/${name}"; });
|
|
|
|
|
|
2016-06-04 22:24:42 +00:00
|
|
|
|
writeBash = name: text: pkgs.writeScript name ''
|
|
|
|
|
#! ${pkgs.bash}/bin/bash
|
|
|
|
|
${text}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
writeBashBin = name: text: pkgs.writeTextFile {
|
|
|
|
|
executable = true;
|
|
|
|
|
destination = "/bin/${name}";
|
|
|
|
|
name = name;
|
|
|
|
|
text = ''
|
|
|
|
|
#! ${pkgs.bash}/bin/bash
|
|
|
|
|
${text}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-08 00:23:06 +00:00
|
|
|
|
writeC = name: { destination ? "" }: src: pkgs.runCommand name {} ''
|
2016-03-03 18:45:46 +00:00
|
|
|
|
PATH=${makeBinPath (with pkgs; [
|
2016-02-08 00:23:06 +00:00
|
|
|
|
binutils
|
|
|
|
|
coreutils
|
|
|
|
|
gcc
|
|
|
|
|
])}
|
|
|
|
|
src=${pkgs.writeText "${name}.c" src}
|
|
|
|
|
exe=$out${destination}
|
|
|
|
|
mkdir -p "$(dirname "$exe")"
|
|
|
|
|
gcc -O -Wall -o "$exe" $src
|
|
|
|
|
strip --strip-unneeded "$exe"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
writeDash = name: text: pkgs.writeScript name ''
|
|
|
|
|
#! ${pkgs.dash}/bin/dash
|
|
|
|
|
${text}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
writeDashBin = name: text: pkgs.writeTextFile {
|
|
|
|
|
executable = true;
|
|
|
|
|
destination = "/bin/${name}";
|
|
|
|
|
name = name;
|
|
|
|
|
text = ''
|
|
|
|
|
#! ${pkgs.dash}/bin/dash
|
|
|
|
|
${text}
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-21 09:18:24 +00:00
|
|
|
|
writeEximConfig = name: text: pkgs.runCommand name {
|
|
|
|
|
inherit text;
|
|
|
|
|
passAsFile = [ "text" ];
|
|
|
|
|
} ''
|
2016-05-24 20:36:04 +00:00
|
|
|
|
# TODO validate exim config even with config.nix.useChroot == true
|
|
|
|
|
# currently doing so will fail because "user exim was not found"
|
|
|
|
|
#${pkgs.exim}/bin/exim -C "$textPath" -bV >/dev/null
|
2016-05-21 09:18:24 +00:00
|
|
|
|
mv "$textPath" $out
|
|
|
|
|
'';
|
|
|
|
|
|
2016-06-12 11:53:23 +00:00
|
|
|
|
writeFiles = name: specs0:
|
|
|
|
|
let
|
|
|
|
|
specs = mapAttrsToList (path: spec0: {
|
|
|
|
|
path = assert types.pathname.check path; path;
|
|
|
|
|
var = "file_${hashString "sha1" path}";
|
|
|
|
|
text = spec0.text;
|
|
|
|
|
}) specs0;
|
|
|
|
|
|
|
|
|
|
filevars = genAttrs' specs (spec: nameValuePair spec.var spec.text);
|
|
|
|
|
|
|
|
|
|
env = filevars // { passAsFile = attrNames filevars; };
|
|
|
|
|
in
|
|
|
|
|
pkgs.runCommand name env /* sh */ ''
|
|
|
|
|
set -efu
|
|
|
|
|
PATH=${makeBinPath [pkgs.coreutils]}
|
|
|
|
|
${concatMapStrings (spec: /* sh */ ''
|
|
|
|
|
install -D ''$${spec.var}Path $out${spec.path}
|
|
|
|
|
'') specs}
|
|
|
|
|
'';
|
|
|
|
|
|
2016-06-04 17:09:19 +00:00
|
|
|
|
writeHaskell =
|
2016-05-24 22:08:34 +00:00
|
|
|
|
k:
|
|
|
|
|
let
|
|
|
|
|
k' = parseDrvName k;
|
|
|
|
|
name = k'.name;
|
|
|
|
|
version = if k'.version != "" then k'.version else "0";
|
|
|
|
|
in
|
2016-06-04 17:09:19 +00:00
|
|
|
|
{ base-depends ? ["base"]
|
|
|
|
|
, executables ? {}
|
2016-05-24 22:08:34 +00:00
|
|
|
|
, ghc-options ? ["-Wall" "-O3" "-threaded" "-rtsopts"]
|
|
|
|
|
, haskellPackages ? pkgs.haskellPackages
|
2016-06-04 17:09:19 +00:00
|
|
|
|
, library ? null
|
2016-05-24 22:08:34 +00:00
|
|
|
|
, license ? "WTFPL"
|
|
|
|
|
}:
|
|
|
|
|
let
|
2016-06-04 17:09:19 +00:00
|
|
|
|
isExecutable = executables != {};
|
|
|
|
|
isLibrary = library != null;
|
|
|
|
|
|
2016-05-24 22:08:34 +00:00
|
|
|
|
cabal-file = pkgs.writeText "${name}-${version}.cabal" ''
|
|
|
|
|
build-type: Simple
|
|
|
|
|
cabal-version: >= 1.2
|
|
|
|
|
name: ${name}
|
|
|
|
|
version: ${version}
|
2016-06-04 17:09:19 +00:00
|
|
|
|
${concatStringsSep "\n" (mapAttrsToList exe-section executables)}
|
|
|
|
|
${optionalString isLibrary (lib-section library)}
|
2016-05-24 22:08:34 +00:00
|
|
|
|
'';
|
2016-06-04 17:09:19 +00:00
|
|
|
|
|
|
|
|
|
exe-install =
|
|
|
|
|
exe-name:
|
|
|
|
|
{ file ? pkgs.writeText "${name}-${exe-name}.hs" text
|
|
|
|
|
, relpath ? "${exe-name}.hs"
|
|
|
|
|
, text
|
|
|
|
|
, ... }:
|
|
|
|
|
if types.filename.check exe-name
|
|
|
|
|
then "install -D ${file} $out/${relpath}"
|
|
|
|
|
else throw "argument ‘exe-name’ is not a ${types.filename.name}";
|
|
|
|
|
|
|
|
|
|
exe-section =
|
|
|
|
|
exe-name:
|
|
|
|
|
{ build-depends ? base-depends ++ extra-depends
|
|
|
|
|
, extra-depends ? []
|
|
|
|
|
, file ? pkgs.writeText "${name}-${exe-name}.hs" text
|
|
|
|
|
, relpath ? "${exe-name}.hs"
|
|
|
|
|
, text
|
|
|
|
|
, ... }: ''
|
|
|
|
|
executable ${exe-name}
|
|
|
|
|
build-depends: ${concatStringsSep "," build-depends}
|
|
|
|
|
ghc-options: ${toString ghc-options}
|
|
|
|
|
main-is: ${relpath}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
get-depends =
|
|
|
|
|
{ build-depends ? base-depends ++ extra-depends
|
|
|
|
|
, extra-depends ? []
|
|
|
|
|
, ...
|
|
|
|
|
}:
|
|
|
|
|
build-depends;
|
|
|
|
|
|
|
|
|
|
lib-install =
|
|
|
|
|
{ exposed-modules
|
|
|
|
|
, ... }:
|
|
|
|
|
concatStringsSep "\n" (mapAttrsToList mod-install exposed-modules);
|
|
|
|
|
|
|
|
|
|
lib-section =
|
|
|
|
|
{ build-depends ? base-depends ++ extra-depends
|
|
|
|
|
, extra-depends ? []
|
|
|
|
|
, exposed-modules
|
|
|
|
|
, ... }: ''
|
|
|
|
|
library
|
|
|
|
|
build-depends: ${concatStringsSep "," build-depends}
|
|
|
|
|
ghc-options: ${toString ghc-options}
|
|
|
|
|
exposed-modules: ${concatStringsSep "," (attrNames exposed-modules)}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
mod-install =
|
|
|
|
|
mod-name:
|
|
|
|
|
{ file ? pkgs.writeText "${name}-${mod-name}.hs" text
|
|
|
|
|
, relpath ? "${replaceStrings ["."] ["/"] mod-name}.hs"
|
|
|
|
|
, text
|
|
|
|
|
, ... }:
|
|
|
|
|
if types.haskell.modid.check mod-name
|
|
|
|
|
then "install -D ${file} $out/${relpath}"
|
|
|
|
|
else throw "argument ‘mod-name’ is not a ${types.haskell.modid.name}";
|
2016-05-24 22:08:34 +00:00
|
|
|
|
in
|
2016-06-04 17:09:19 +00:00
|
|
|
|
haskellPackages.mkDerivation {
|
|
|
|
|
inherit isExecutable isLibrary license version;
|
|
|
|
|
executableHaskellDepends =
|
|
|
|
|
attrVals
|
|
|
|
|
(concatMap get-depends (attrValues executables))
|
|
|
|
|
haskellPackages;
|
|
|
|
|
libraryHaskellDepends =
|
|
|
|
|
attrVals
|
|
|
|
|
(optionals isLibrary (get-depends library))
|
|
|
|
|
haskellPackages;
|
2016-05-24 22:08:34 +00:00
|
|
|
|
pname = name;
|
|
|
|
|
src = pkgs.runCommand "${name}-${version}-src" {} ''
|
|
|
|
|
install -D ${cabal-file} $out/${cabal-file.name}
|
2016-06-04 17:09:19 +00:00
|
|
|
|
${optionalString isLibrary (lib-install library)}
|
|
|
|
|
${concatStringsSep "\n" (mapAttrsToList exe-install executables)}
|
2016-05-24 22:08:34 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-24 22:28:09 +00:00
|
|
|
|
writeNixFromCabal =
|
|
|
|
|
trace (toString [
|
|
|
|
|
"The function `writeNixFromCabal` has been deprecated in favour of"
|
2016-06-04 17:09:19 +00:00
|
|
|
|
"`writeHaskell`."
|
2016-05-24 22:28:09 +00:00
|
|
|
|
])
|
|
|
|
|
(name: path: pkgs.runCommand name {} ''
|
|
|
|
|
${pkgs.cabal2nix}/bin/cabal2nix ${path} > $out
|
|
|
|
|
'');
|
2016-02-08 00:23:06 +00:00
|
|
|
|
}
|