Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9720833743f1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c876db629d2c
Choose a head ref
  • 13 commits
  • 621 files changed
  • 6 contributors

Commits on Jun 27, 2018

  1. Copy the full SHA
    3210dd3 View commit details
  2. xcbuild: rework to use lib.PLIST

    This is a good way to test that plist works.
    
    Sorry for the large diff. There are a bunch of cleanups in here that
    needed to be done. Should make it possible to use in cross
    compilation.
    matthewbauer committed Jun 27, 2018
    Copy the full SHA
    c672e37 View commit details
  3. unixtools: add killall

    matthewbauer committed Jun 27, 2018
    Copy the full SHA
    bceb29f View commit details
  4. treewide: use killall

    matthewbauer committed Jun 27, 2018
    Copy the full SHA
    1614140 View commit details

Commits on Jun 28, 2018

  1. lit: 0.5.1 -> 0.6.0

    dtzWill committed Jun 28, 2018
    Copy the full SHA
    f5d834e View commit details
  2. Copy the full SHA
    d361371 View commit details
  3. Merge pull request #42727 from dtzWill/update/lit-0.6.0

    lit: 0.5.1 -> 0.6.0
    dtzWill authored Jun 28, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9fb3a04 View commit details
  4. treewide: http -> https sources (#42676)

    * treewide: http -> https sources
    
    This updates the source urls of all top-level packages from http to
    https where possible.
    
    * buildtorrent: fix url and tab -> spaces
    infinisil authored and xeji committed Jun 28, 2018
    Copy the full SHA
    57bccb3 View commit details
  5. lxd: also needs ebtables

    Mic92 committed Jun 28, 2018
    Copy the full SHA
    6eb81b8 View commit details
  6. generators: refactor toPlist

    Address PR comments
    
    Refactors
    
    - Rename toPLIST -> toPlist
    matthewbauer committed Jun 28, 2018
    Copy the full SHA
    337b589 View commit details
  7. Merge pull request #42669 from obsidiansystems/upstream-plist

    Upstream PLIST handling
    matthewbauer authored Jun 28, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a44d33a View commit details
  8. Copy the full SHA
    9fcc63a View commit details
  9. mbedtls: cmake&ninja, threading, clean-up; hiawatha: options, Nix mbe…

    …dtls (#41722)
    
    * mbedtls: build with cmake&ninja, clean-up
    
    * mbedtls: cmake ninja Darwin build clean-up
    
    * hiawatha: add build options, use system mbedTLS, platforms -> unix
    Anton-Latukha authored and Mic92 committed Jun 28, 2018
    Copy the full SHA
    c876db6 View commit details
Showing 621 changed files with 829 additions and 863 deletions.
49 changes: 48 additions & 1 deletion lib/generators.nix
Original file line number Diff line number Diff line change
@@ -173,6 +173,53 @@ rec {
fna);
in if fna == {} then "<λ>"
else "<λ:{${showFnas}}>"
else abort "toPretty: should never happen (v = ${v})";
else abort "generators.toPretty: should never happen (v = ${v})";

# PLIST handling
toPlist = {}: v: let
expr = ind: x: with builtins;
if isNull x then "" else
if isBool x then bool ind x else
if isInt x then int ind x else
if isString x then str ind x else
if isList x then list ind x else
if isAttrs x then attrs ind x else
abort "generators.toPlist: should never happen (v = ${v})";

literal = ind: x: ind + x;

bool = ind: x: literal ind (if x then "<true/>" else "<false/>");
int = ind: x: literal ind "<integer>${toString x}</integer>";
str = ind: x: literal ind "<string>${x}</string>";
key = ind: x: literal ind "<key>${x}</key>";

indent = ind: expr "\t${ind}";

item = ind: libStr.concatMapStringsSep "\n" (indent ind);

list = ind: x: libStr.concatStringsSep "\n" [
(literal ind "<array>")
(item ind x)
(literal ind "</array>")
];

attrs = ind: x: libStr.concatStringsSep "\n" [
(literal ind "<dict>")
(attr ind x)
(literal ind "</dict>")
];

attr = let attrFilter = name: value: name != "_module" && value != null;
in ind: x: libStr.concatStringsSep "\n" (lib.flatten (lib.mapAttrsToList
(name: value: lib.optional (attrFilter name value) [
(key "\t${ind}" name)
(expr "\t${ind}" value)
]) x));

in ''<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
${expr "" v}
</plist>'';

}
2 changes: 1 addition & 1 deletion pkgs/applications/audio/MMA/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
name = "mma-${version}";

src = fetchurl {
url = "http://www.mellowood.ca/mma/mma-bin-${version}.tar.gz";
url = "https://www.mellowood.ca/mma/mma-bin-${version}.tar.gz";
sha256 = "1g4gvc0nr0qjc0fyqrnx037zpaasgymgmrm5s7cdxqnld9wqw8ww";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/abcde/default.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ in
stdenv.mkDerivation {
name = "abcde-${version}";
src = fetchurl {
url = "http://abcde.einval.com/download/abcde-${version}.tar.gz";
url = "https://abcde.einval.com/download/abcde-${version}.tar.gz";
sha256 = "0f9bjs0phk23vry7gvh0cll9vl6kmc1y4fwwh762scfdvpbp3774";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/aeolus/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
version = "0.9.5";

src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
sha256 = "0wfp8ihldyq2dhdyy7ld7z0zzfvnwam1dvbxnpd9d6xgc4k3j4nv";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/audacious/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
version = "3.9";

src = fetchurl {
url = "http://distfiles.audacious-media-player.org/audacious-${version}-gtk3.tar.bz2";
url = "https://distfiles.audacious-media-player.org/audacious-${version}-gtk3.tar.bz2";
sha256 = "0dc7fg0v2l2j4h9cz1baz7rf4n0a5jgk09qvsj806sh6jp7w6ipm";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/banshee/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
version = "2.6.2";

src = fetchurl {
url = "http://ftp.gnome.org/pub/GNOME/sources/banshee/2.6/banshee-${version}.tar.xz";
url = "https://ftp.gnome.org/pub/GNOME/sources/banshee/2.6/banshee-${version}.tar.xz";
sha256 = "1y30p8wxx5li39i5gpq2wib0ympy8llz0gyi6ri9bp730ndhhz7p";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/beast/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "beast-0.7.1";

src = fetchurl {
url = "http://ftp.gtk.org/pub/beast/v0.7/${name}.tar.bz2";
url = "https://ftp.gtk.org/pub/beast/v0.7/${name}.tar.bz2";
sha256 = "0jyl1i1918rsn4296w07fsf6wx3clvad522m3bzgf8ms7gxivg5l";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/bitmeter/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.2";

src = fetchurl {
url = "http://devel.tlrmx.org/audio/source/${name}.tar.gz";
url = "https://devel.tlrmx.org/audio/source/${name}.tar.gz";
sha256 = "09ck2gxqky701dc1p0ip61rrn16v0pdc7ih2hc2sd63zcw53g2a7";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/calf/default.nix
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
version = "0.90.0";

src = fetchurl {
url = "http://calf-studio-gear.org/files/${name}.tar.gz";
url = "https://calf-studio-gear.org/files/${name}.tar.gz";
sha256 = "0dijv2j7vlp76l10s4v8gbav26ibaqk8s24ci74vrc398xy00cib";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/denemo/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
version = "2.2.0";

src = fetchurl {
url = "http://ftp.gnu.org/gnu/denemo/denemo-${version}.tar.gz";
url = "https://ftp.gnu.org/gnu/denemo/denemo-${version}.tar.gz";
sha256 = "18zcs4xmfj4vpzi15dj7k5bjzzzlr3sjf9xhrrgy4samrrdpqzfh";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/drumgizmo/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
name = "drumgizmo-${version}";

src = fetchurl {
url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz";
url = "https://www.drumgizmo.org/releases/${name}/${name}.tar.gz";
sha256 = "1q2jghjz0ygaja8dgvxp914if8yyzpa204amdcwb9yyinpxsahz4";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/ecasound/default.nix
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
version = "2.9.1";

src = fetchurl {
url = "http://ecasound.seul.org/download/ecasound-${version}.tar.gz";
url = "https://ecasound.seul.org/download/ecasound-${version}.tar.gz";
sha256 = "1wyws3xc4f9pglrrqv6k9137sarv4asizqrxz8h0dn44rnzfiz1r";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/fomp/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.0.0";

src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
url = "https://download.drobilla.net/${name}.tar.bz2";
sha256 = "1hh2xhknanqn3iwp12ihl6bf8p7bqxryms9qk7mh21lixl42b8k5";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/gigedit/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
version = "1.1.0";

src = fetchurl {
url = "http://download.linuxsampler.org/packages/${name}.tar.bz2";
url = "https://download.linuxsampler.org/packages/${name}.tar.bz2";
sha256 = "087pc919q28r1vw31c7w4m14bqnp4md1i2wbmk8w0vmwv2cbx2ni";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/jaaa/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "0.8.4";

src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
sha256 = "0jyll4rkb6vja2widc340ww078rr24c6nmxbxdqvbxw409nccd01";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/jack-capture/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "0.9.73";

src = fetchurl {
url = "http://archive.notam02.no/arkiv/src/${name}.tar.gz";
url = "https://archive.notam02.no/arkiv/src/${name}.tar.gz";
sha256 = "1pji0zdwm3kxjrkbzj7fnxhr8ncrc8pyqnwyrh47fhypgqjv1br1";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/jalv/default.nix
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
version = "1.6.0";

src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
url = "https://download.drobilla.net/${name}.tar.bz2";
sha256 = "1x2wpzzx2cgvz3dgdcgsj8dr0w3zsasy62mvl199bsdj5fbjaili";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/japa/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "japa-${version}";

src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
sha256 = "1jhj7s4vqk5c4lchdall0kslvj5sh91902hhfjvs6r3a5nrhwcp0";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/ladspa-sdk/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ stdenv.mkDerivation rec {
name = "ladspa-sdk-${version}";
version = "1.13";
src = fetchurl {
url = "http://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/ladspa-sdk/ladspah.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ stdenv.mkDerivation rec {
name = "ladspa.h-${version}";
version = "1.13";
src = fetchurl {
url = "http://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz";
sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/linuxsampler/default.nix
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
version = "2.1.0";

src = fetchurl {
url = "http://download.linuxsampler.org/packages/${name}.tar.bz2";
url = "https://download.linuxsampler.org/packages/${name}.tar.bz2";
sha256 = "0fdxpw7jjfi058l95131d6d8538h05z7n94l60i6mhp9xbplj2jf";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/mda-lv2/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.2.2";

src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
url = "https://download.drobilla.net/${name}.tar.bz2";
sha256 = "0hh40c5d2m0k5gb3vw031l6lqn59dg804an3mkmhkc7qv4gc6xm4";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/mixxx/default.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
version = "2.0.0";

src = fetchurl {
url = "http://downloads.mixxx.org/${name}/${name}-src.tar.gz";
url = "https://downloads.mixxx.org/${name}/${name}-src.tar.gz";
sha256 = "0vb71w1yq0xwwsclrn2jj9bk8w4n14rfv5c0aw46c11mp8xz7f71";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/monkeys-audio/default.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
patches = [ ./buildfix.diff ];

src = fetchurl {
url = "http://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/nova-filters/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "nova-filters-${version}";

src = fetchurl {
url = http://klingt.org/~tim/nova-filters/nova-filters_0.2-2.tar.gz;
url = https://klingt.org/~tim/nova-filters/nova-filters_0.2-2.tar.gz;
sha256 = "16064vvl2w5lz4xi3lyjk4xx7fphwsxc14ajykvndiz170q32s6i";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/paprefs/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "paprefs-0.9.10";

src = fetchurl {
url = "http://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
url = "https://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
sha256 = "1c5b3sb881szavly220q31g7rvpn94wr7ywlk00hqb9zaikml716";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/pavucontrol/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "pavucontrol-3.0";

src = fetchurl {
url = "http://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
url = "https://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
sha256 = "14486c6lmmirkhscbfygz114f6yzf97h35n3h3pdr27w4mdfmlmk";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/pd-plugins/helmholtz/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "helmholtz";

src = fetchurl {
url = "http://www.katjaas.nl/helmholtz/helmholtz~.zip";
url = "https://www.katjaas.nl/helmholtz/helmholtz~.zip";
name = "helmholtz.zip";
curlOpts = "--user-agent ''";
sha256 = "0h1fj7lmvq9j6rmw33rb8k0byxb898bi2xhcwkqalb84avhywgvs";
2 changes: 1 addition & 1 deletion pkgs/applications/audio/pd-plugins/puremapping/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "20160130";

src = fetchurl {
url = "http://www.chnry.net/data/puremapping-${version}-generic.zip";
url = "https://www.chnry.net/data/puremapping-${version}-generic.zip";
name = "puremapping";
sha256 = "1h7qgqd8srrxw2y1rkdw5js4k6f5vc8x6nlm2mq9mq9vjck7n1j7";
};
2 changes: 1 addition & 1 deletion pkgs/applications/audio/pd-plugins/zexy/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "2.2.4";

src = fetchurl {
url = "http://puredata.info/downloads/zexy/releases/${version}/${name}.tar.gz";
url = "https://puredata.info/downloads/zexy/releases/${version}/${name}.tar.gz";
sha256 = "1xpgl82c2lc6zfswjsa7z10yhv5jb7a4znzh3nc7ffrzm1z8vylp";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/renoise/default.nix
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
if stdenv.system == "x86_64-linux" then
if builtins.isNull releasePath then
fetchurl {
url = "http://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86_64.tar.bz2";
url = "https://files.renoise.com/demo/Renoise_${urlVersion version}_Demo_x86_64.tar.bz2";
sha256 = "0pan68fr22xbj7a930y29527vpry3f07q3i9ya4fp6g7aawffsga";
}
else
2 changes: 1 addition & 1 deletion pkgs/applications/audio/sonic-visualiser/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
version = "2.4.1";

src = fetchurl {
url = "http://code.soundsoftware.ac.uk/attachments/download/1185/${name}.tar.gz";
url = "https://code.soundsoftware.ac.uk/attachments/download/1185/${name}.tar.gz";
sha256 = "06nlha70kgrby16nyhngrv5q846xagnxdinv608v7ga7vpywwmyb";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/tetraproc/default.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
version = "0.8.2";

src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
sha256 = "17y3vbm5f6h5cmh3yfxjgqz4xhfwpkla3lqfspnbm4ndlzmfpykv";
};

2 changes: 1 addition & 1 deletion pkgs/applications/audio/x42-plugins/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
name = "x42-plugins-${version}";

src = fetchurl {
url = "http://gareus.org/misc/x42-plugins/${name}.tar.xz";
url = "https://gareus.org/misc/x42-plugins/${name}.tar.xz";
sha256 = "167ly9nxqq3g0j35i9jv9rvd8qp4i9ncfcjxmg972cp6q8ak8mdl";
};

2 changes: 1 addition & 1 deletion pkgs/applications/editors/geany/default.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
name = "geany-${version}";

src = fetchurl {
url = "http://download.geany.org/${name}.tar.bz2";
url = "https://download.geany.org/${name}.tar.bz2";
sha256 = "66baaff43f12caebcf0efec9a5533044dc52837f799c73a1fd7312caa86099c2";
};

2 changes: 1 addition & 1 deletion pkgs/applications/editors/jupp/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
urls = [
"https://www.mirbsd.org/MirOS/dist/jupp/${srcName}.tgz"
"http://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" ];
"https://pub.allbsd.org/MirOS/dist/jupp/${srcName}.tgz" ];
sha256 = "1fnf9jsd6p4jyybkhjjs328qx38ywy8w029ngc7j7kqp0ixn0l0s";
};

2 changes: 1 addition & 1 deletion pkgs/applications/editors/monodevelop/default.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
name = "monodevelop-${version}";

src = fetchurl {
url = "http://download.mono-project.com/sources/monodevelop/${name}.tar.bz2";
url = "https://download.mono-project.com/sources/monodevelop/${name}.tar.bz2";
sha256 = "0bim4bfv3zwijafl9g0cx3159zq43dlcv74mnyrda41j4p52w5ji";
};

2 changes: 1 addition & 1 deletion pkgs/applications/editors/netbeans/default.nix
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ in
stdenv.mkDerivation {
name = "netbeans-8.2";
src = fetchurl {
url = http://download.netbeans.org/netbeans/8.2/final/zip/netbeans-8.2-201609300101.zip;
url = https://download.netbeans.org/netbeans/8.2/final/zip/netbeans-8.2-201609300101.zip;
sha256 = "0j092qw7aqfc9vpnvr3ix1ii94p4ik6frcnw708iyv4s9crqi65d";
};

2 changes: 1 addition & 1 deletion pkgs/applications/editors/scite/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "4.0.5";

src = fetchurl {
url = http://www.scintilla.org/scite405.tgz;
url = https://www.scintilla.org/scite405.tgz;
sha256 = "0h16wk2986nkkhhdv5g4lxlcn02qwyja24x1r6vf02r1hf46b9q2";
};

Loading