mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-23 00:33:12 +03:00
12 lines
282 B
Nix
12 lines
282 B
Nix
{ pkgs, nixpkgs, nix, ... }:
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "pasta";
|
|
src = ./src;
|
|
nativeBuildInputs = [ nix ];
|
|
buildPhase = ''
|
|
nix-instantiate --eval --strict --json --store $PWD \
|
|
eval.nix --arg 'pkgs' 'import ${nixpkgs} {}' -A docs.lib \
|
|
> $out
|
|
'';
|
|
}
|