trying to package chained-recurrence
This commit is contained in:
parent
2a5b73b83e
commit
238d82bec3
7 changed files with 350 additions and 2 deletions
35
packages/chained-recurrence.nix
Normal file
35
packages/chained-recurrence.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, pkgs, fetchurl, lib, unzip, makeWrapper, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation {
|
||||
pname = "mioctl";
|
||||
version = "latest";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue