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: 75151fe85dc6
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: 3d84cffe9552
Choose a head ref
  • 14 commits
  • 10 files changed
  • 11 contributors

Commits on Jul 15, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c1e687e View commit details

Commits on Jul 16, 2019

  1. pdfcpu: 0.1.25 -> 0.2.1

    doronbehar committed Jul 16, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    eed8cd5 View commit details
  2. est-sfs: init at 2.03

    bzizou committed Jul 16, 2019
    Copy the full SHA
    9a22c8c View commit details

Commits on Jul 22, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    davidtwco David Wood
    Copy the full SHA
    6f1a71e View commit details
  2. rls: 1.34 -> 1.35

    symphorien authored and dywedir committed Jul 22, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    davidtwco David Wood
    Copy the full SHA
    7ed3d2d View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    davidtwco David Wood
    Copy the full SHA
    594c287 View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    davidtwco David Wood
    Copy the full SHA
    cd50801 View commit details
  5. Merge pull request #65263 from cypherpunk2140/lnd

    lnd: init at 0.7.0-beta
    kalbasit authored Jul 22, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    fooker Dustin Frisch
    Copy the full SHA
    8593404 View commit details
  6. rls: 1.34 -> 1.35 (#65241)

    rls: 1.34 -> 1.35
    dywedir authored Jul 22, 2019
    Copy the full SHA
    6bec1fa View commit details
  7. Merge pull request #65260 from juaningan/master

    python37Packages.pysonos: 0.0.14 -> 0.0.21
    globin authored Jul 22, 2019
    Copy the full SHA
    8fb71b4 View commit details
  8. lf: 12 -> 13

    primeos committed Jul 22, 2019
    Copy the full SHA
    0419d98 View commit details
  9. Merge pull request #64897 from bzizou/est-sfs

    est-sfs: init at 2.03
    nlewo authored Jul 22, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nyanloutre Paul TREHIOU
    Copy the full SHA
    481bb44 View commit details
  10. Merge pull request #64821 from danieldk/drawio-10.9.5

    drawio: 10.8.0 -> 10.9.5
    nlewo authored Jul 22, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nyanloutre Paul TREHIOU
    Copy the full SHA
    36323f0 View commit details
  11. Merge pull request #64752 from doronbehar/update-pdfcpu

    pdfcpu: 0.1.25 -> 0.2.1
    nlewo authored Jul 22, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nyanloutre Paul TREHIOU
    Copy the full SHA
    3d84cff View commit details
13 changes: 13 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -1148,6 +1148,19 @@
github = "cwoac";
name = "Oliver Matthews";
};
cypherpunk2140 = {
email = "stefan.mihaila@pm.me";
github = "cypherpunk2140";
name = "Ștefan D. Mihăilă";
keys = [
{ longkeyid = "rsa4096/6E68A39BF16A3ECB";
fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB";
}
{ longkeyid = "rsa4096/6220AD7846220A52";
fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52";
}
];
};
dalance = {
email = "dalance@gmail.com";
github = "dalance";
2 changes: 2 additions & 0 deletions pkgs/applications/altcoins/default.nix
Original file line number Diff line number Diff line change
@@ -65,6 +65,8 @@ rec {
};
litecoind = litecoin.override { withGui = false; };

lnd = callPackage ./lnd.nix { };

masari = callPackage ./masari.nix { boost = boost165; };

memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
22 changes: 22 additions & 0 deletions pkgs/applications/altcoins/lnd.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ buildGoModule, fetchFromGitHub, lib }:

buildGoModule rec {
pname = "lnd";
version = "0.7.0-beta";

src = fetchFromGitHub {
owner = "lightningnetwork";
repo = "lnd";
rev = "v${version}";
sha256 = "0d6m1vfy33rg6d7qmkpydiypav1girxsnxan9njyjz0vhinmq0sx";
};

modSha256 = "0akxi7xhyz7xx0vc003abidva02sp940cc2gfjg4fmzkc95cajc9";

meta = with lib; {
description = "Lightning Network Daemon";
homepage = "https://github.com/lightningnetwork/lnd";
license = lib.licenses.mit;
maintainers = with maintainers; [ cypherpunk2140 ];
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/graphics/drawio/default.nix
Original file line number Diff line number Diff line change
@@ -11,11 +11,11 @@

stdenv.mkDerivation rec {
pname = "drawio";
version = "10.8.0";
version = "10.9.5";

src = fetchurl {
url = "https://github.com/jgraph/drawio-desktop/releases/download/v${version}/draw.io-x86_64-${version}.rpm";
sha256 = "0c5wymzhbp72x0yhvw7vb4akkdvj97npl9kglk79vqjbzfn5di9k";
sha256 = "13687d5bfxj7wlbh5j13pvxvs69whlg820wllk3pb1xb3syynlpn";
};

nativeBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/applications/graphics/pdfcpu/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoModule rec {
pname = "pdfcpu";
version = "0.1.25";
version = "0.2.1";

src = fetchFromGitHub {
owner = "hhrutter";
repo = pname;
rev = "v${version}";
sha256 = "0vmmc7nnvpvsf92yi69rvqif1irkpya2shqyz49sa3s42jh1446b";
sha256 = "0cg17nph3qv1ca86j3wcd33vqs6clkzi6y2nrajmk7dq5vbzr6nn";
};

modSha256 = "0cz4gs88s9z2yv1gc9ap92vv2j93ab6kr25zjgl2r7z6clbl5fzp";
28 changes: 28 additions & 0 deletions pkgs/applications/science/biology/est-sfs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, fetchurl, gsl }:

stdenv.mkDerivation rec {
pname = "est-sfs";
version = "2.03";

src = fetchurl {
url = "mirror://sourceforge/est-usfs/${pname}-release-${version}.tar.gz";
sha256 = "1hvamrgagz0xi89w8qafyd9mjrdpyika8zm22drddnjkp4sdj65n";
};

buildInputs = [ gsl ];

installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share/doc/${pname}
cp est-sfs $out/bin
cp est-sfs-documentation.pdf $out/share/doc/${pname}
'';

meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/est-usfs;
description = "Estimate the unfolded site frequency spectrum and ancestral states";
license = licenses.gpl3;
maintainers = [ maintainers.bzizou ];
platforms = platforms.all;
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pysonos/default.nix
Original file line number Diff line number Diff line change
@@ -13,13 +13,13 @@

buildPythonPackage rec {
pname = "pysonos";
version = "0.0.14";
version = "0.0.21";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "6ebab661eb3ff9f814139924c18a87d0b1cab8a6af98d323e2b1ee313ed856c9";
sha256 = "0x2nznjnm721qw9nys5ap3b6hq9s48bsd1yj5xih50pvn0rf0nz2";
};

propagatedBuildInputs = [ xmltodict requests ifaddr ];
32 changes: 12 additions & 20 deletions pkgs/development/tools/rust/rls/default.nix
Original file line number Diff line number Diff line change
@@ -1,46 +1,38 @@
{ stdenv, fetchFromGitHub, rustPlatform
, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv }:
, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv
, CoreFoundation, Security }:

rustPlatform.buildRustPackage rec {
name = "rls-${version}";
pname = "rls";
# with rust 1.x you can only build rls version 1.x.y
version = "1.34.0";
version = "1.35.0";

src = fetchFromGitHub {
owner = "rust-lang";
repo = "rls";
rev = "0d6f53e1a4adbaf7d83cdc0cb54720203fcb522e";
sha256 = "1aabs0kr87sp68n9893im5wz21dicip9ixir9a9l56nis4qxpm7i";
repo = pname;
rev = version;
sha256 = "1l3fvlgfzri8954nbwqxqghjy5wa8p1aiml12r1lqs92dh0g192f";
};

cargoSha256 = "16r9rmjhb0dbdgx9qf740nsckjazz4z663vaajw5z9i4qh0jsy18";
cargoSha256 = "0v96ndys6bv5dfjg01chrqrqjc57qqfjw40n6vppi9bpw0f6wkf5";

# a nightly compiler is required unless we use this cheat code.
RUSTC_BOOTSTRAP=1;

# clippy is hard to build with stable rust so we disable clippy lints
cargoBuildFlags = [ "--no-default-features" ];

nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ openssh openssl curl zlib libiconv ];
buildInputs = [ openssh openssl curl zlib libiconv ]
++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);

doCheck = true;
# the default checkPhase has no way to pass --no-default-features
checkPhase = ''
runHook preCheck
preCheck = ''
# client tests are flaky
rm tests/client.rs
echo "Running cargo test"
cargo test --no-default-features
runHook postCheck
'';

meta = with stdenv.lib; {
description = "Rust Language Server - provides information about Rust programs to IDEs and other tools";
homepage = https://github.com/rust-lang/rls/;
license = licenses.mit;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ symphorien ];
platforms = platforms.all;
};
4 changes: 2 additions & 2 deletions pkgs/tools/misc/lf/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoModule rec {
name = "lf-${version}";
version = "12";
version = "13";

src = fetchFromGitHub {
owner = "gokcehan";
repo = "lf";
rev = "r${version}";
sha256 = "1pjydnwlc6mrnwz13s13c91nvjvb1ibwl944ppg8xq8dcy9b2cs4";
sha256 = "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga";
};

modSha256 = "14fvn8yjm9cnpsmzgxw2dypr3h8h36mxrbk7zma42w8rsp46jpz7";
7 changes: 6 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8122,7 +8122,9 @@ in

pyo3-pack = callPackage ../development/tools/rust/pyo3-pack { };
rainicorn = callPackage ../development/tools/rust/rainicorn { };
rls = callPackage ../development/tools/rust/rls { };
rls = callPackage ../development/tools/rust/rls {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
};
rustfmt = callPackage ../development/tools/rust/rustfmt { };
rustracer = callPackage ../development/tools/rust/racer { };
rustracerd = callPackage ../development/tools/rust/racerd { };
@@ -17021,6 +17023,7 @@ in

bitcoin = altcoins.bitcoin;
clightning = altcoins.clightning;
lnd = altcoins.lnd;

bitcoin-xt = altcoins.bitcoin-xt;
cryptop = altcoins.cryptop;
@@ -22498,6 +22501,8 @@ in

emboss = callPackage ../applications/science/biology/emboss { };

est-sfs = callPackage ../applications/science/biology/est-sfs { };

ezminc = callPackage ../applications/science/biology/EZminc { };

exonerate = callPackage ../applications/science/biology/exonerate { };