summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-08-29 23:43:16 +0200
committermakefu <github@syntax-fehler.de>2018-08-29 23:43:16 +0200
commit9f637ad3d8f8c230f6ce537a2bbeb085a1adc5f5 (patch)
treef247b618f63676c3ac6069d4cc7a16eaa4dc22da /makefu/5pkgs
parent7fa3fc7b1a34f471c6e4b92b2b7cdd545649214f (diff)
ma pkgs.cozy-audiobooks: init at 0.6.0
what a pain
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r--makefu/5pkgs/cozy-audiobooks/default.nix100
1 files changed, 100 insertions, 0 deletions
diff --git a/makefu/5pkgs/cozy-audiobooks/default.nix b/makefu/5pkgs/cozy-audiobooks/default.nix
new file mode 100644
index 00000000..312889fc
--- /dev/null
+++ b/makefu/5pkgs/cozy-audiobooks/default.nix
@@ -0,0 +1,100 @@
+{ stdenv, fetchFromGitHub, fetchPypi
+, ninja
+, boost
+, meson
+, pkgconfig
+, wrapGAppsHook
+, appstream-glib
+, desktop-file-utils
+, gtk3
+, glib
+, isPy3k
+, gst_all_1
+, gobjectIntrospection
+, python3Packages
+, file
+, cairo , sqlite , gettext
+, gnome3
+}:
+
+let
+ peewee = with python3Packages; buildPythonPackage rec {
+ # https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/python-peewee
+ pname = "peewee";
+ version = "3.6.4";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1fi4z9n86ri79gllwav0gv3hmwipzmkvivzfyszfqn9fi5zpp3ak";
+ };
+ doCheck = false;
+
+ checkPhase = ''
+ python runtests.py
+ '';
+
+ buildInputs = [
+ cython
+ sqlite
+ # psycopg2
+ # mysql-connector
+ ];
+ meta.license = stdenv.lib.licenses.mit;
+ };
+in
+stdenv.mkDerivation rec {
+ name = "cozy-${version}";
+ version = "0.6.0";
+
+ src = fetchFromGitHub {
+ owner = "geigi";
+ repo = "cozy";
+ rev = version;
+ sha256 = "1afl3qsn9h4k8fgp63z0ab9p5ashrg3g936a9rh3i9qydv6s3srd";
+ };
+
+ postPatch = ''
+ chmod +x data/meson_post_install.py
+ patchShebangs data/meson_post_install.py
+ substituteInPlace cozy/magic/magic.py --replace "ctypes.util.find_library('magic')" "'${file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}'"
+ '';
+ postInstall = ''
+ wrapProgram $out/bin/com.github.geigi.cozy \
+ --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)"
+
+ '';
+ wrapPrefixVariables = [ "PYTHONPATH" ];
+
+
+ nativeBuildInputs = [
+ meson ninja pkgconfig
+ wrapGAppsHook
+ appstream-glib
+ desktop-file-utils
+ gobjectIntrospection
+
+ ];
+ buildInputs = with gst_all_1; [ gtk3 glib
+ gstreamer gst-plugins-good cairo gettext file.out
+ gnome3.defaultIconTheme gnome3.gsettings-desktop-schemas
+ ]
+ ++ (with python3Packages; [
+ python gst-python pygobject3 dbus-python mutagen peewee magic
+
+ ]);
+
+ checkPhase = ''
+ ninja test
+ '';
+
+ #preInstall = ''
+ # export MESON_INSTALL_PREFIX=$out
+ #'';
+
+ meta = with stdenv.lib; {
+ description = ''
+ Eval nix code from python.
+ '';
+ maintainers = [ maintainers.makefu ];
+ license = licenses.mit;
+ };
+}