mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
couchpotato: switch to fetchFromGitHub
This commit is contained in:
parent
3d9480f720
commit
d69406b88c
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, python2Packages, lib }:
|
{ fetchFromGitHub, python2Packages, lib }:
|
||||||
|
|
||||||
with python2Packages;
|
with python2Packages;
|
||||||
|
|
||||||
@ -7,9 +7,11 @@ buildPythonApplication rec {
|
|||||||
version = "3.0.1";
|
version = "3.0.1";
|
||||||
disabled = isPy3k;
|
disabled = isPy3k;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/CouchPotato/CouchPotatoServer/archive/build/${version}.tar.gz";
|
owner = "CouchPotato";
|
||||||
sha256 = "1xwjis3ijh1rff32mpdsphmsclf0lkpd3phpgxkccrigq1m9r3zh";
|
repo = "CouchPotatoServer";
|
||||||
|
rev = "build/${version}";
|
||||||
|
hash = "sha256-0k8MqLnqYjhHPE9/jncTFIj1T4F2aXU4mXdeEimDB7M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
Loading…
Reference in New Issue
Block a user