mirror of
https://github.com/h7x4/nix-attr-search.git
synced 2025-02-19 21:50:50 +01:00
5 lines
145 B
Nix
5 lines
145 B
Nix
|
{ pkgs, ... }:
|
||
|
pkgs.writers.writeHaskellBin "json2nix" {
|
||
|
libraries = with pkgs.haskellPackages; [ aeson ];
|
||
|
} (builtins.readFile ./json2nix.hs)
|