From 24fd1fe6c62b7a9fc347794fde043285da272f5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Thu, 13 Dec 2018 21:25:24 +0100 Subject: Initial commit published for NUR --- libs.nix | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 libs.nix (limited to 'libs.nix') diff --git a/libs.nix b/libs.nix new file mode 100644 index 00000000..2ddfcbb5 --- /dev/null +++ b/libs.nix @@ -0,0 +1,78 @@ +{ pkgs }: +with pkgs; +rec { + yarn2nixPackage = let + src = builtins.fetchGit { + url = "git://github.com/moretea/yarn2nix.git"; + ref = "master"; + rev = "780e33a07fd821e09ab5b05223ddb4ca15ac663f"; + }; + in + (callPackage src {}) // { inherit src; }; + + nodeEnv = import ./lib/node-env.nix; + + fetchedGithub = path: + let + json = lib.importJSON path; + in rec { + version = json.tag; + name = "${json.meta.name}-${version}"; + src = fetchFromGitHub json.github; + }; + + fetchedGit = path: + let + json = lib.importJSON path; + in rec { + version = json.tag; + name = "${json.meta.name}-${version}"; + src = fetchgit json.git; + }; + + fetchedGitPrivate = path: + let + json = lib.importJSON path; + in rec { + version = json.tag; + name = "${json.meta.name}-${version}"; + src = fetchgitPrivate json.git; + }; + + wrap = { paths ? [], vars ? {}, file ? null, script ? null, name ? "wrap" }: + assert file != null || script != null || + abort "wrap needs 'file' or 'script' argument"; + with rec { + set = n: v: "--set ${pkgs.lib.escapeShellArg n} " + + "${pkgs.lib.escapeShellArg v}"; + args = (map (p: "--prefix PATH : ${p}/bin") paths) ++ + (builtins.attrValues (pkgs.lib.mapAttrs set vars)); + }; + runCommand name + { + f = if file == null then writeScript name script else file; + buildInputs = [ makeWrapper ]; + } + '' + makeWrapper "$f" "$out" ${toString args} + ''; + + # This adds header colors to the builds, but it rebuilds the whole + # world from scratch, so only use it to debug! + # add it as postHook in derivations + immaePostHook = '' + header() { + echo -ne "\033[1;36m" + echo -n "$1" + echo -e "\033[0m" + } + + echoCmd() { + printf "\033[1;34m%s:\033[0m" "$1" + shift + printf ' %q' "$@" + echo + } + ''; + +} // (if builtins.pathExists ./lib/private then import ./lib/private else {}) -- cgit v1.2.3