Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9ab168b500e8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7e0127e1ca6f
Choose a head ref
  • 1 commit
  • 6 files changed
  • 1 contributor

Commits on Nov 24, 2019

  1. tree-wide: inherit yarn2nix from yarn2nix-moretea

    Milan Pässler authored and Lassulus committed Nov 24, 2019
    Copy the full SHA
    7e0127e View commit details
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, stdenv, fetchFromGitHub, makeWrapper, makeDesktopItem, electron_5, riot-web, yarn2nix-moretea }:
{ pkgs, stdenv, fetchFromGitHub, makeWrapper, makeDesktopItem, electron_5, riot-web, mkYarnPackage }:

# Notes for maintainers:
# * versions of `riot-web` and `riot-desktop` should be kept in sync.
@@ -14,7 +14,7 @@ let
sha256 = "1xi5zg3602d7gdjxskpk2q3anpn2drrkxyirfvi9mzcfp2r05557";
};

in yarn2nix-moretea.mkYarnPackage rec {
in mkYarnPackage rec {
name = "riot-desktop-${version}";
inherit version;

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=../../../../../ -i bash -p wget yarn2nix-moretea.yarn2nix
#!nix-shell -I nixpkgs=../../../../../ -i bash -p wget yarn2nix

set -euo pipefail

4 changes: 2 additions & 2 deletions pkgs/applications/version-management/gitlab/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
, ruby, tzdata, git, nettools, nixosTests, nodejs
, gitlabEnterprise ? false, callPackage, yarn
, yarn2nix-moretea, replace
, fixup_yarn_lock, replace
}:

let
@@ -62,7 +62,7 @@ let
yarn config --offline set yarn-offline-mirror ${yarnOfflineCache}
# Fixup "resolved"-entries in yarn.lock to match our offline cache
${yarn2nix-moretea.fixup_yarn_lock}/bin/fixup_yarn_lock yarn.lock
${fixup_yarn_lock}/bin/fixup_yarn_lock yarn.lock
yarn install --offline --frozen-lockfile --ignore-scripts --no-progress --non-interactive
2 changes: 1 addition & 1 deletion pkgs/applications/version-management/gitlab/update.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
#! nix-shell -i python3 -p bundix common-updater-scripts nix nix-prefetch-git python3 python3Packages.requests python3Packages.lxml python3Packages.click python3Packages.click-log vgo2nix yarn2nix-moretea.yarn2nix
#! nix-shell -i python3 -p bundix common-updater-scripts nix nix-prefetch-git python3 python3Packages.requests python3Packages.lxml python3Packages.click python3Packages.click-log vgo2nix yarn2nix

import click
import click_log
4 changes: 2 additions & 2 deletions pkgs/servers/web-apps/codimd/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper
, which, nodejs, yarn2nix, python2 }:
, which, nodejs, mkYarnPackage, python2 }:

yarn2nix.mkYarnPackage rec {
mkYarnPackage rec {
name = "codimd";
version = "1.5.0";

9 changes: 5 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2358,10 +2358,6 @@ in

codimd = callPackage ../servers/web-apps/codimd {
nodejs = nodejs-10_x;
yarn2nix = yarn2nix-moretea.override {
nodejs = nodejs-10_x;
yarn = yarn.override { nodejs = nodejs-10_x; };
};
};

colord = callPackage ../tools/misc/colord { };
@@ -7401,6 +7397,11 @@ in

yarn2nix-moretea = callPackage ../development/tools/yarn2nix-moretea/yarn2nix { };

inherit (yarn2nix-moretea)
yarn2nix
mkYarnPackage
fixup_yarn_lock;

yasr = callPackage ../applications/audio/yasr { };

yank = callPackage ../tools/misc/yank { };