lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 11 lines 341 B view raw
1{ stdenv, fetch-bower, git }: name: version: target: outputHash: stdenv.mkDerivation { 2 name = "${name}-${version}"; 3 buildCommand = '' 4 out=$PWD/out fetch-bower ${name} ${version} ${target} 5 cp -R out $out 6 ''; 7 outputHashMode = "recursive"; 8 outputHashAlgo = "sha256"; 9 inherit outputHash; 10 buildInputs = [git fetch-bower]; 11}