This commit is contained in:
nydragon 2025-03-18 22:07:50 +01:00
commit e8c3b24e8b
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 46 additions and 0 deletions

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
{ self, nixpkgs }:
{
packages.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./package.nix { };
};
}

31
package.nix Normal file
View file

@ -0,0 +1,31 @@
{
stdenv,
fetchFromGitHub,
python312Packages,
zip,
...
}:
stdenv.mkDerivation {
name = "acsm-calibre-plugin";
src = fetchFromGitHub {
owner = "Leseratte10";
repo = "acsm-calibre-plugin";
rev = "97e6ddc1f13024c4406f2a6f2af1d9bca259fa84";
hash = "sha256-uVPs6hgpIrWywcFkbSsGoIA4ZpBBk96zbNVhU4MsJ/Y=";
};
buildInputs = [
python312Packages.oscrypto
python312Packages.asn1crypto
zip
];
buildPhase = ''
zip calibre-plugin/oscrypto.zip ${python312Packages.oscrypto}/lib/python3.12/site-packages/oscrypto
zip calibre-plugin/asn1crypto.zip ${python312Packages.asn1crypto}/lib/python3.12/site-packages/asn1crypto
ls -la > $out
bash ./bundle_calibre_plugin.sh
cp calibre-plugin.zip $out
'';
}