WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
10 changed files with 97 additions and 4 deletions
Showing only changes of commit b29fd0dbbe - Show all commits

View file

@ -252,6 +252,7 @@
art-lotte
art-lotte-bgs-nsfw
art-lotte-bgs-sfw
kodi-pydes
package-updater
;
};

View file

@ -2,5 +2,6 @@ self: super: {
art-lotte = self.callPackage ./art/lotte { };
art-lotte-bgs-nsfw = self.callPackage ./art/lotte/bgs-nsfw.nix { };
art-lotte-bgs-sfw = self.callPackage ./art/lotte/bgs-sfw.nix { };
kodi-pydes = self.kodiPackages.callPackage ./kodi/pydes { };
package-updater = self.callPackage ./updater.nix { };
}

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.pydes" name="pyDes" version="2.0.1" provider-name="Todd Whiteman">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.module"
library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en">A pure python module which implements the DES and Triple-DES encryption algorithms.</summary>
<website>http://twhiteman.netfirms.com/des.html</website>
<license>MIT</license>
<platform>all</platform>
<source>http://sourceforge.net/projects/pydes/</source>
</extension>
</addon>

View file

@ -0,0 +1,11 @@
{ callPackage, buildKodiAddon }:
let
src = callPackage ./source.nix { };
in
buildKodiAddon {
pname = "pyDes";
namespace = "script.module.pydes";
version = "2.0.1";
inherit src;
inherit (src) meta;
}

View file

@ -0,0 +1,12 @@
{
"url": "https://github.com/twhiteman/pyDes",
"rev": "e988a5ffc9abb8010fc75dba54904d1c5dbe83db",
"date": "2019-01-07T17:12:32-08:00",
"path": "/nix/store/avhx558pnxzlzl4ww1xrzkl08qcp19pm-pyDes",
"sha256": "0sic8wbyk5azb4d4m6zbc96lfqcw8s2pzcv9nric5yqc751613ww",
"hash": "sha256-nI9gQjkM+8Jitmmzf4VGnGFHTWLrm0oaWV+V6RdHLGo=",
"fetchLFS": false,
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
}

View file

@ -0,0 +1,29 @@
{
stdenvNoCC,
fetchFromGitHub,
lib,
}:
let
srcInfo = lib.importJSON ./source.json;
src = fetchFromGitHub {
owner = "twhiteman";
repo = "pyDes";
inherit (srcInfo) rev sha256;
};
in
stdenvNoCC.mkDerivation {
pname = "kodi-pydes";
version = srcInfo.date;
inherit src;
dontUnpack = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/lib
cp $src/pyDes.py $out/lib
cp ${./addon.xml} $out/addon.xml
'';
meta = {
license = lib.licenses.mit;
description = "A pure python module which implements the DES and Triple-DES encryption algorithms.";
};
}

View file

@ -0,0 +1,19 @@
{
nix-prefetch-git,
curl,
jq,
lib,
}:
let
srcInfo = lib.importJSON ./source.json;
in
''
echo "kodi-pydes: Checking for updates"
CURRENT_COMMIT=$(${curl}/bin/curl https://api.github.com/repos/twhiteman/pyDes/commits | ${jq}/bin/jq -r '.[0].sha')
KNOWN_COMMIT=${srcInfo.rev}
if [ $CURRENT_COMMIT != $KNOWN_COMMIT ]; then
echo "kodi-pydes: Updating from $KNOWN_COMMIT to $CURRENT_COMMIT"
${nix-prefetch-git}/bin/nix-prefetch-git https://github.com/twhiteman/pyDes | ${jq}/bin/jq > packages/kodi/pydes/source.json
fi
echo "kodi-pydes: Done"
''

View file

@ -0,0 +1,5 @@
{
lib,
callPackage,
}:
lib.concatMapStringsSep "\n" (f: callPackage "${f}/updater.nix" { }) [ ./pydes ]

View file

@ -6,7 +6,10 @@
nix,
}:
let
script = lib.concatMapStringsSep "\n" (f: callPackage "${f}/updater.nix" { }) [ ./art ];
script = lib.concatMapStringsSep "\n" (f: callPackage "${f}/updater.nix" { }) [
./art
./kodi
];
in
writeScriptBin "updater" ''
#!${bash}/bin/bash

View file

@ -9,9 +9,6 @@
kodiPkgs: with kodiPkgs; [
jellyfin
jellycon
inputstream-adaptive
inputstreamhelper
simplejson
]
))
];