mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
google-musicmanager: beta_1.0.221.5230-r0 -> beta_1.0.243.1116-r0
This commit is contained in:
parent
10b8c8496a
commit
a8d43d6950
1 changed files with 5 additions and 4 deletions
|
@ -6,23 +6,24 @@ let
|
||||||
archUrl = name: arch: "http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/${name}_${arch}.deb";
|
archUrl = name: arch: "http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/${name}_${arch}.deb";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "beta_1.0.221.5230-r0"; # friendly to nix-env version sorting algo
|
version = "beta_1.0.243.1116-r0"; # friendly to nix-env version sorting algo
|
||||||
product = "google-musicmanager";
|
product = "google-musicmanager";
|
||||||
name = "${product}-${version}";
|
name = "${product}-${version}";
|
||||||
|
|
||||||
# When looking for newer versions, since google doesn't let you list their repo dirs,
|
# When looking for newer versions, since google doesn't let you list their repo dirs,
|
||||||
# curl http://dl.google.com/linux/musicmanager/deb/dists/stable/Release
|
# curl http://dl.google.com/linux/musicmanager/deb/dists/stable/Release
|
||||||
# fetch an appropriate packages file eg main/binary-amd64/Packages
|
# fetch an appropriate packages file such as main/binary-amd64/Packages:
|
||||||
|
# curl http://dl.google.com/linux/musicmanager/deb/dists/stable/main/binary-amd64/Packages
|
||||||
# which will contain the links to all available *.debs for the arch.
|
# which will contain the links to all available *.debs for the arch.
|
||||||
|
|
||||||
src = if stdenv.system == "x86_64-linux"
|
src = if stdenv.system == "x86_64-linux"
|
||||||
then fetchurl {
|
then fetchurl {
|
||||||
url = archUrl name "amd64";
|
url = archUrl name "amd64";
|
||||||
sha256 = "1h0ssbz6y9xi2szalgb5wcxi8m1ylg4qf2za6zgvi908hpan7q37";
|
sha256 = "54f97f449136e173492d36084f2c01244b84f02d6e223fb8a40661093e0bec7c";
|
||||||
}
|
}
|
||||||
else fetchurl {
|
else fetchurl {
|
||||||
url = archUrl name "i386";
|
url = archUrl name "i386";
|
||||||
sha256 = "0q8cnzx7s25bpqlbp40d43mwd6m8kvhvdifkqlgc9phpydnqpd1i";
|
sha256 = "121a7939015e2270afa3f1c73554102e2b4f2e6a31482ff7be5e7c28dd101d3c";
|
||||||
};
|
};
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue