5 lines
145 B
Nix
5 lines
145 B
Nix
|
{ pkgs, ... }:
|
||
|
pkgs.writers.writeHaskellBin "json2nix" {
|
||
|
libraries = with pkgs.haskellPackages; [ aeson ];
|
||
|
} (builtins.readFile ./json2nix.hs)
|