efaec90f60
Packages from github repos have slashes in their name. Nix store names shouldn't have slashes. Fixes rvl/bower2nix#13
30 lines
978 B
Nix
30 lines
978 B
Nix
{ stdenv, lib, bower2nix, cacert }:
|
|
let
|
|
bowerVersion = version:
|
|
let
|
|
components = lib.splitString "#" version;
|
|
hash = lib.last components;
|
|
ver = if builtins.length components == 1 then version else hash;
|
|
in ver;
|
|
|
|
bowerName = name: lib.replaceStrings ["/"] ["-"] name;
|
|
|
|
fetchbower = name: version: target: outputHash: stdenv.mkDerivation {
|
|
name = "${bowerName name}-${bowerVersion version}";
|
|
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
|
|
buildCommand = ''
|
|
fetch-bower --quiet --out=$PWD/out "${name}" "${target}" "${version}"
|
|
# In some cases, the result of fetchBower is different depending
|
|
# on the output directory (e.g. if the bower package contains
|
|
# symlinks). So use a local output directory before copying to
|
|
# $out.
|
|
cp -R out $out
|
|
'';
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
inherit outputHash;
|
|
buildInputs = [ bower2nix ];
|
|
};
|
|
|
|
in fetchbower
|