nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 34 lines 618 B view raw
1{ 2 lib, 3 fetchurl, 4 ppxlib, 5 ppx_deriving, 6 buildDunePackage, 7}: 8 9buildDunePackage rec { 10 pname = "sel"; 11 version = "0.8.0"; 12 13 minimalOCamlVersion = "4.07"; 14 15 src = fetchurl { 16 url = "https://github.com/gares/sel/releases/download/v${version}/sel-${version}.tbz"; 17 hash = "sha256-jTAjWdaoioR5+G96qoOY+JXrJY00eF7y7WhGSiFwfqg="; 18 }; 19 20 buildInputs = [ 21 ppxlib 22 ]; 23 24 propagatedBuildInputs = [ 25 ppx_deriving 26 ]; 27 28 meta = { 29 description = "Simple event library"; 30 homepage = "https://github.com/gares/sel/"; 31 license = lib.licenses.mit; 32 maintainers = [ lib.maintainers.vbgl ]; 33 }; 34}