nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 668 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5 dune-configurator, 6 xmlm, 7}: 8 9buildDunePackage (finalAttrs: { 10 pname = "xmlplaylist"; 11 version = "0.1.5"; 12 13 src = fetchFromGitHub { 14 owner = "savonet"; 15 repo = "ocaml-xmlplaylist"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-mDmNixQ3vdOjCQr1jUaQ6XhvRkJ0Ob9RB+BGkSdftPQ="; 18 }; 19 20 buildInputs = [ dune-configurator ]; 21 propagatedBuildInputs = [ xmlm ]; 22 23 meta = { 24 homepage = "https://github.com/savonet/ocaml-xmlplaylist"; 25 description = "Module to parse various RSS playlist formats"; 26 license = lib.licenses.lgpl21Only; 27 maintainers = with lib.maintainers; [ dandellion ]; 28 }; 29})