mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #54692 from Anton-Latukha/fetchFromGitHub-clementine
clementine: use fetchFromGitHub
This commit is contained in:
commit
c1a44bd0db
1 changed files with 7 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
|
{ stdenv, fetchFromGitHub, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
|
||||||
, qt4, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
|
, qt4, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
|
||||||
, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
|
, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
|
||||||
, qca2, pkgconfig, sparsehash, config, makeWrapper, gst_plugins }:
|
, qca2, pkgconfig, sparsehash, config, makeWrapper, gst_plugins }:
|
||||||
|
@ -11,14 +11,16 @@ let
|
||||||
|
|
||||||
version = "1.3.1";
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/clementine-player/Clementine/archive/1.3.1.tar.gz;
|
owner = "clementine-player";
|
||||||
sha256 = "0z7k73wyz54c3020lb6x2dgw0vz4ri7wcl3vs03qdj5pk8d971gq";
|
repo = "Clementine";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0i3jkfs8dbfkh47jq3cnx7pip47naqg7w66vmfszk4d8vj37j62j";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./clementine-spotify-blob.patch
|
./clementine-spotify-blob.patch
|
||||||
# Required so as to avoid adding libspotify as a build dependency (as it is
|
# Required so as to avoid adding libspotify as a build dependency (as it is
|
||||||
# unfree and thus would prevent us from having a free package).
|
# unfree and thus would prevent us from having a free package).
|
||||||
./clementine-spotify-blob-remove-from-build.patch
|
./clementine-spotify-blob-remove-from-build.patch
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue