Skip to content

Instantly share code, notes, and snippets.

@mrosset
Last active January 1, 2018 11:47
Show Gist options
  • Select an option

  • Save mrosset/4d9c85ae3cc3bbc9adcc3f72081f4f13 to your computer and use it in GitHub Desktop.

Select an option

Save mrosset/4d9c85ae3cc3bbc9adcc3f72081f4f13 to your computer and use it in GitHub Desktop.

Revisions

  1. mrosset revised this gist Jan 1, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion deluge.scm
    Original file line number Diff line number Diff line change
    @@ -2,10 +2,10 @@
    (package
    (inherit libtorrent)
    (name "python2-libtorrent")
    (build-system python-build-system)
    (arguments
    `(#:phases
    (modify-phases %standard-phases
    (add-before 'build 'enable-python-libtorrent
    (lambda* (#:key inputs #:allow-other-keys))))))
    (build-system gnu-build-system)
    (synopsis "python bindings for libtorrent")))
  2. mrosset created this gist Jan 1, 2018.
    11 changes: 11 additions & 0 deletions deluge.scm
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    (define-public python2-libtorrent
    (package
    (inherit libtorrent)
    (name "python2-libtorrent")
    (arguments
    `(#:phases
    (modify-phases %standard-phases
    (add-before 'build 'enable-python-libtorrent
    (lambda* (#:key inputs #:allow-other-keys))))))
    (build-system gnu-build-system)
    (synopsis "python bindings for libtorrent")))