trying to package chained-recurrence

This commit is contained in:
Matt Nish-Lapidus 2025-03-27 21:53:32 -04:00
parent 2a5b73b83e
commit 238d82bec3
7 changed files with 350 additions and 2 deletions

View file

@ -0,0 +1,35 @@
{
stdenv,
pkgs,
pyprojectHook,
resolveBuildSystem,
lib,
...
}:
let
pname = "chained-recurrence";
version = "0.0.13";
in
stdenv.mkDerivation {
inherit pname version;
src = pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-PMxZFB82XkvHMCLVvbiW0L8AVQFiYpzXTFpxIUyDqIY=";
};
nativeBuildInputs =
[
# Add hook responsible for configuring, building & installing.
pyprojectHook
]
# Build systems needs to be resolved since we don't propagate dependencies.
# Otherwise dependencies of our build-system will be missing.
++ resolveBuildSystem;
meta = with lib; {
homepage = "https://codeberg.org/Dokana/Taskwarrior-Chained";
description = "chained tasks";
platforms = platforms.linux;
};
}

View file

@ -1,6 +1,6 @@
{ stdenv, pkgs, fetchurl, lib, unzip, makeWrapper, ... }:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "mioctl";
version = "latest";