Skip to content

Commit e634d53

Browse files
committedNov 19, 2017
Merge branch 'master' into staging
2 parents 50d8720 + 1b594f0 commit e634d53

File tree

5 files changed

+40
-11
lines changed

5 files changed

+40
-11
lines changed
 

‎pkgs/applications/editors/android-studio/default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ in rec {
2727

2828
preview = mkStudio {
2929
pname = "android-studio-preview";
30-
version = "3.1.0.2"; # "Android Studio 3.1 Canary 3"
31-
build = "171.4435470";
32-
sha256Hash = "1yqzxmzqxvhq9q9k07yfchh2al0wdy0j5k5fmjv4zbw20panx10h";
30+
version = "3.1.0.3"; # "Android Studio 3.1 Canary 4"
31+
build = "171.4444016";
32+
sha256Hash = "0qgd0hd3i3p1adv0xqa0409r5injw3ygs50lajzi99s33j6vdc6s";
3333

3434
meta = stable.meta // {
3535
description = "The Official IDE for Android (preview version)";
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{ mkDerivation, lib, fetchurl
22
, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
33
, qtscript, qtserialport, qttools
4-
, qtmultimedia
4+
, qtmultimedia, qtlocation
55
}:
66

77
mkDerivation rec {
88
name = "stellarium-${version}";
9-
version = "0.15.0";
9+
version = "0.16.1";
1010

1111
src = fetchurl {
1212
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
13-
sha256 = "0il751lgnfkx35h1m8fzwwnrygpxjx2a80gng1i1rbybkykf7l3l";
13+
sha256 = "087x6mbcn2yj8d3qi382vfkzgdwmanxzqi5l1x3iranxmx9c40dh";
1414
};
1515

1616
nativeBuildInputs = [ cmake perl ];
1717

1818
buildInputs = [
1919
freetype libpng mesa openssl libiconv qtscript qtserialport qttools
20-
qtmultimedia
20+
qtmultimedia qtlocation
2121
];
2222

2323
meta = with lib; {
@@ -26,6 +26,6 @@ mkDerivation rec {
2626
license = licenses.gpl2;
2727

2828
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
29-
maintainers = [ maintainers.peti ];
29+
maintainers = with maintainers; [ peti ma27 ];
3030
};
3131
}

‎pkgs/applications/version-management/pijul/default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ with rustPlatform;
44

55
buildRustPackage rec {
66
name = "pijul-${version}";
7-
version = "0.7.3";
7+
version = "0.8.0";
88

99
src = fetchurl {
1010
url = "https://pijul.org/releases/${name}.tar.gz";
11-
sha256 = "08cffv6nfp1iv9m2qhr9hggy9kg8xp07p8kqkjypfsdsb983vz5n";
11+
sha256 = "00pi03yp2bgnjpsz2hgaapxfw2i4idbjqc88cagpvn4yr1612wqx";
1212
};
1313

1414
sourceRoot = "${name}/pijul";
@@ -18,7 +18,7 @@ buildRustPackage rec {
1818

1919
doCheck = false;
2020

21-
cargoSha256 = "0r69vghjd6b30v0qjsipyv56n92iwvyxmllrnwjzjf5pzhhjl7sy";
21+
cargoSha256 = "1cnr08qbpia3336l37k1jli20d7kwnrw2gys8s9mg271cb4vdx03";
2222

2323
meta = with stdenv.lib; {
2424
description = "A distributed version control system";

‎pkgs/data/misc/mime-types/default.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{ stdenv, fetchurl }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "mime-types-${version}";
5+
version = "9";
6+
7+
src = fetchurl {
8+
url = "https://mirrors.kernel.org/gentoo/distfiles/${name}.tar.bz2";
9+
sha256 = "0pib8v0f5xwwm3xj2ygdi2dlxxvbq6p95l3fah5f66qj9xrqlqxl";
10+
};
11+
12+
dontBuild = true;
13+
14+
installPhase = ''
15+
runHook preInstall
16+
install -Dm644 -t $out/etc mime.types
17+
runHook postInstall
18+
'';
19+
20+
meta = with stdenv.lib; {
21+
description = "A database of common mappings of file extensions to MIME types";
22+
homepage = https://packages.gentoo.org/packages/app-misc/mime-types;
23+
license = licenses.gpl2;
24+
maintainers = with maintainers; [ peterhoeg ];
25+
platforms = platforms.all;
26+
};
27+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -13545,6 +13545,8 @@ with pkgs;
1354513545

1354613546
shaderc = callPackage ../development/compilers/shaderc { };
1354713547

13548+
mime_types = callPackage ../data/misc/mime-types { };
13549+
1354813550
shared_mime_info = callPackage ../data/misc/shared-mime-info { };
1354913551

1355013552
shared_desktop_ontologies = callPackage ../data/misc/shared-desktop-ontologies { };

0 commit comments

Comments
 (0)
Please sign in to comment.