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: 3eb9c9f84a27
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: 3a9e46ac173e
Choose a head ref
  • 15 commits
  • 10 files changed
  • 8 contributors

Commits on Jul 12, 2018

  1. libcsptr: init at 2.0.4

    fragamus committed Jul 12, 2018
    Copy the full SHA
    517c299 View commit details

Commits on May 14, 2019

  1. Copy the full SHA
    758050e View commit details
  2. devd: init at 0.9

    devd is a local development server designed to be used with modd
    (already in nixpkgs.)
    BrianHicks committed May 14, 2019
    Copy the full SHA
    9bf8f18 View commit details
  3. nvidia_x11: 430.09 -> 430.14

    eadwu committed May 14, 2019
    Copy the full SHA
    4cdcfc5 View commit details

Commits on May 15, 2019

  1. adafruit-ampy: init at 1.0.7

    etu committed May 15, 2019
    Copy the full SHA
    e5b4f6f View commit details
  2. libertinus: 6.6 -> 6.8

    Notes:
    
    https://github.com/libertinus-fonts/libertinus/releases/tag/v6.8
    https://github.com/libertinus-fonts/libertinus/releases/tag/v6.7
    
    * update repo "owner", moved
    * don't try to build since we don't mean to :)
    * update for font cleanup PR (thanks!)
    dtzWill committed May 15, 2019
    Copy the full SHA
    1ec1bdd View commit details

Commits on May 16, 2019

  1. Copy the full SHA
    8f277d1 View commit details
  2. Merge pull request #61556 from dtzWill/update/libertinus-6.8

    libertinus: 6.6 -> 6.8
    c0bw3b authored May 16, 2019
    Copy the full SHA
    e44bc8d View commit details
  3. Merge pull request #61515 from eadwu/nvidia_x11/430.14

    nvidia_x11: 430.09 -> 430.14
    c0bw3b authored May 16, 2019
    Copy the full SHA
    d6a1b71 View commit details
  4. Merge pull request #61495 from etu/init-ampy

    adafruit-ampy: init at 1.0.7
    etu authored May 16, 2019
    Copy the full SHA
    ac3b216 View commit details
  5. pythonPackages.httpretty: disable 2 flaky tests

    intermittently failing on all platforms
    c0bw3b authored May 16, 2019
    Copy the full SHA
    9ee1763 View commit details
  6. Copy the full SHA
    8994131 View commit details
  7. Copy the full SHA
    f38fbe0 View commit details
  8. Merge pull request #43385 from fragamus/libcsptr2

    libcsptr: init at 2.0.4
    pSub authored May 16, 2019
    Copy the full SHA
    3789eb8 View commit details
  9. Merge pull request #61479 from BrianHicks/devd

    devd: init at 0.9
    c0bw3b authored May 16, 2019
    Copy the full SHA
    3a9e46a View commit details
12 changes: 12 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -762,6 +762,11 @@
github = "brian-dawn";
name = "Brian Dawn";
};
brianhicks = {
email = "brian@brianthicks.com";
github = "BrianHicks";
name = "Brian Hicks";
};
bricewge = {
email = "bricewge@gmail.com";
github = "bricewge";
@@ -1737,6 +1742,13 @@
github = "fps";
name = "Florian Paul Schmidt";
};

fragamus = {
email = "innovative.engineer@gmail.com";
github = "fragamus";
name = "Michael Gough";
};

fredeb = {
email = "im@fredeb.dev";
github = "fredeeb";
4 changes: 2 additions & 2 deletions pkgs/applications/networking/browsers/vivaldi/default.nix
Original file line number Diff line number Diff line change
@@ -16,11 +16,11 @@ let
vivaldiName = if isSnapshot then "vivaldi-snapshot" else "vivaldi";
in stdenv.mkDerivation rec {
pname = "vivaldi";
version = "2.5.1525.41-1";
version = "2.5.1525.43-1";

src = fetchurl {
url = "https://downloads.vivaldi.com/${branch}/vivaldi-${branch}_${version}_amd64.deb";
sha256 = "0hdyk2f0jwp9rgzkqidksrmbri6lgihlgny6hpksfz132m00lv0b";
sha256 = "0mmyl32fz6p43gz8vzkhh0z1wcb3l5cckxl8vkz53lb9k2mckjqi";
};

unpackPhase = ''
8 changes: 4 additions & 4 deletions pkgs/data/fonts/libertinus/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ lib, fetchFromGitHub }:

let
version = "6.6";
version = "6.8";
in fetchFromGitHub rec {
name = "libertinus-${version}";

owner = "khaledhosny";
owner = "alif-type";
repo = "libertinus";
rev = "v${version}";

@@ -14,7 +14,7 @@ in fetchFromGitHub rec {
install -m444 -Dt $out/share/fonts/opentype *.otf
install -m444 -Dt $out/share/doc/${name} *.txt
'';
sha256 = "11pxb2zwvjlk06zbqrfv2pgwsl4awf68fak1ks4881i8xbl1910m";
sha256 = "0iwbw3sw8rcsifpzw72g3cz0a960scv7cib8mwrw53282waqq2gc";

meta = with lib; {
description = "A fork of the Linux Libertine and Linux Biolinum fonts";
@@ -23,7 +23,7 @@ in fetchFromGitHub rec {
that started as an OpenType math companion of the Libertine font family,
but grown as a full fork to address some of the bugs in the fonts.
'';
homepage = https://github.com/khaledhosny/libertinus;
homepage = https://github.com/alif-type/libertinus;
license = licenses.ofl;
maintainers = with maintainers; [ siddharthist ];
platforms = platforms.all;
23 changes: 23 additions & 0 deletions pkgs/development/libraries/libcsptr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, git }:

stdenv.mkDerivation rec {
name = "libcsptr-${version}";
version = "2.0.4";

src = fetchFromGitHub {
owner = "Snaipe";
repo = "libcsptr";
rev = "v${version}";
sha256 = "0i1498h2i6zq3fn3zf3iw7glv6brn597165hnibgwccqa8sh3ich";
};

nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
description = "Smart pointer constructs for the (GNU) C programming language";
homepage = https://github.com/Snaipe/libcsptr;
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = [ maintainers.fragamus ];
};
}
6 changes: 5 additions & 1 deletion pkgs/development/python-modules/httpretty/default.nix
Original file line number Diff line number Diff line change
@@ -34,7 +34,11 @@ buildPythonPackage rec {

__darwinAllowLocalNetworking = true;

NOSE_EXCLUDE = stdenv.lib.optionalString (stdenv.isAarch64) "tests.functional.test_httplib2.test_callback_response";
# Those flaky tests are failing intermittently on all platforms
NOSE_EXCLUDE = stdenv.lib.concatStringsSep "," [
"tests.functional.test_httplib2.test_callback_response"
"tests.functional.test_requests.test_streaming_responses"
];

meta = with stdenv.lib; {
homepage = "https://httpretty.readthedocs.org/";
22 changes: 22 additions & 0 deletions pkgs/development/tools/devd/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ buildGoPackage, fetchFromGitHub, stdenv }:

buildGoPackage rec {
pname = "devd";
version = "0.9";
src = fetchFromGitHub {
owner = "cortesi";
repo = "devd";
rev = "v${version}";
sha256 = "1b02fj821k68q7xl48wc194iinqw9jiavzfl136hlzvg4m07p1wf";
};
goPackagePath = "github.com/cortesi/devd";
subPackages = [ "cmd/devd" ];
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "A local webserver for developers";
homepage = https://github.com/cortesi/devd;
license = licenses.mit;
maintainers = with maintainers; [ brianhicks ];
platforms = platforms.all;
};
}
201 changes: 201 additions & 0 deletions pkgs/development/tools/devd/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/nvidia-x11/default.nix
Original file line number Diff line number Diff line change
@@ -20,10 +20,10 @@ rec {

# No active beta right now
beta = generic {
version = "430.09";
sha256_64bit = "0k59ahljya286ararncf3mc7sfgsw82vnrszczqicpysn3qfar95";
settingsSha256 = "082v0xmz83sf4wdvcb2zawddy5vh3pbwjz0fda1rayc7fdadni05";
persistencedSha256 = "028vs23mnb345sxjxqqmln9pwq8n6cc6dhfzq4hj21ghc6l6fg54";
version = "430.14";
sha256_64bit = "05qgakc0sqv9zr6j4i49iqrd271nris8pmnv3l431r71ygx6zm00";
settingsSha256 = "1hh07258a6z0g8dl6mxrizdxqcgswv58r4rbamfhhwh9i42fpdgg";
persistencedSha256 = "1wmwmg9ma9rfx03s2qa249f0p7yf0lxdpiadab0raajk1lzlrrc8";
};

stable_418 = generic {
26 changes: 26 additions & 0 deletions pkgs/tools/misc/adafruit-ampy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, python3 }:

with python3.pkgs;

buildPythonApplication rec {
pname = "adafruit-ampy";
version = "1.0.7";

src = fetchPypi {
inherit pname version;
sha256 = "1dz5sksalccv4c3bzk3c1jxpg3s28lwlw8hfwc9dfxhw3a1np3fd";
};

nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ click python-dotenv pyserial ];

# No tests
doCheck = false;

meta = with stdenv.lib; {
homepage = "https://github.com/pycampers/ampy";
license = licenses.mit;
description = "Utility to interact with a MicroPython board over a serial connection.";
maintainers = with maintainers; [ etu ];
};
}
Loading