nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

package.nix (615B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   php,
      5 }:
      6 
      7 php.buildComposerProject2 (finalAttrs: {
      8   pname = "rodnik";
      9   version = "0-unstable-2026-07-17";
     10 
     11   src = fetchFromGitHub {
     12     owner = "dwcoaching";
     13     repo = "rodnik";
     14     rev = "49a7788d0cce5715d1c7627a42931b6c1e1c29f1";
     15     hash = "sha256-otbUr3r6yxevJGyfdHSYLPNzmZqaJuogyrWCBxzc/C8=";
     16   };
     17 
     18   vendorHash = "sha256-HzZgD40QIg+cv/wxZnMJxhh0VULZGNR/JLa7aAWtRM4=";
     19 
     20   meta = {
     21     description = "Rodnik.today";
     22     homepage = "https://github.com/dwcoaching/rodnik";
     23     license = lib.licenses.free;
     24     maintainers = [ lib.maintainers.sikmir ];
     25     skip.ci = true;
     26   };
     27 })