nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 23 lines 480 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "youplot"; 9 gemdir = ./.; 10 11 exes = [ "uplot" ]; 12 13 passthru.updateScript = bundlerUpdateScript "youplot"; 14 15 meta = { 16 description = "Command line tool that draws plots on the terminal"; 17 homepage = "https://github.com/red-data-tools/YouPlot"; 18 mainProgram = "uplot"; 19 license = lib.licenses.mit; 20 maintainers = with lib.maintainers; [ purcell ]; 21 platforms = lib.platforms.unix; 22 }; 23}