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: 120b013e0c08
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: 590320e107e1
Choose a head ref
  • 5 commits
  • 6 files changed
  • 4 contributors

Commits on Apr 4, 2018

  1. svn-all-fast-export: update patch sha256, --prefix is now used

    also, rename to svn-all-fast-export, but keep an alias to the old name
    
    (cherry picked from commit 594130f)
    flokli authored and Mic92 committed Apr 4, 2018
    Copy the full SHA
    a749692 View commit details
  2. README: 17.09 -> 18.03

    (cherry picked from commit a308118)
    vcunat committed Apr 4, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    259db94 View commit details
  3. xmlrpc-c: enable darwin build

    (cherry picked from commit eb6a85e)
    marsam authored and Mic92 committed Apr 4, 2018
    Copy the full SHA
    1a7464e View commit details
  4. libtorrent: enable darwin build

    (cherry picked from commit 88bb014)
    marsam authored and Mic92 committed Apr 4, 2018
    Copy the full SHA
    e8982eb View commit details
  5. libqtxdg: fix pkgconfig files

    Without this change pkgconfig files contain incorrect values for libdir and
    includedir in the form of:
    
    prefix: /nix/store/...liblibqtxdg
    libdir: ${prefix}//nix/store/.../libqtxdg/lib
    includedir: ${prefix}//nix/store/.../libqtxdg/include
    (cherry picked from commit a1fec88)
    pbogdan authored and Mic92 committed Apr 4, 2018
    Copy the full SHA
    590320e View commit details
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -12,12 +12,12 @@ build daemon as so-called channels. To get channel information via git, add
```

For stability and maximum binary package support, it is recommended to maintain
custom changes on top of one of the channels, e.g. `nixos-17.09` for the latest
custom changes on top of one of the channels, e.g. `nixos-18.03` for the latest
release and `nixos-unstable` for the latest successful build of master:

```
% git remote update channels
% git rebase channels/nixos-17.09
% git rebase channels/nixos-18.03
```

For pull-requests, please rebase onto nixpkgs `master`.
@@ -31,9 +31,9 @@ For pull-requests, please rebase onto nixpkgs `master`.
* [Manual (NixOS)](https://nixos.org/nixos/manual/)
* [Community maintained wiki](https://nixos.wiki/)
* [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined)
* [Continuous package builds for 17.09 release](https://hydra.nixos.org/jobset/nixos/release-17.09)
* [Continuous package builds for 18.03 release](https://hydra.nixos.org/jobset/nixos/release-18.03)
* [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents)
* [Tests for 17.09 release](https://hydra.nixos.org/job/nixos/release-17.09/tested#tabs-constituents)
* [Tests for 18.03 release](https://hydra.nixos.org/job/nixos/release-18.03/tested#tabs-constituents)

Communication:

Original file line number Diff line number Diff line change
@@ -117,11 +117,14 @@ rec {
git = gitSVN;
};

svn_all_fast_export = libsForQt5.callPackage ./svn-all-fast-export { };
svn-all-fast-export = libsForQt5.callPackage ./svn-all-fast-export { };

tig = callPackage ./tig { };

topGit = callPackage ./topgit { };

transcrypt = callPackage ./transcrypt { };

# aliases
svn_all_fast_export = svn-all-fast-export;
}
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ stdenv.mkDerivation {
patches = [
(fetchpatch {
name = "pr40.patch";
sha256 = "1qndhk5csf7kddk3giailx7r0cdipq46lj73nkcws43n4n93synk";
url = https://github.com/svn-all-fast-export/svn2git/pull/40.diff;
sha256 = "0mwncklzncsifql9zlxlbj3clsif5p2v1xs8nmxrw44mqvaysjw3";
url = https://github.com/svn-all-fast-export/svn2git/compare/f00d5a5...flokli:nixos-20180326.patch;
})
];

@@ -31,8 +31,6 @@ stdenv.mkDerivation {
"SVN_INCLUDE=${subversion.dev}/include/subversion-1"
];

installPhase = "make install INSTALL_ROOT=$out";

meta = with stdenv.lib; {
homepage = https://github.com/svn-all-fast-export/svn2git;
description = "A fast-import based converter for an svn repo to git repos";
6 changes: 5 additions & 1 deletion pkgs/desktops/lxqt/base/libqtxdg/default.nix
Original file line number Diff line number Diff line change
@@ -16,7 +16,11 @@ stdenv.mkDerivation rec {
buildInputs = [ qt5.qtbase qt5.qtsvg ];

preConfigure = ''
cmakeFlags+=" -DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
cmakeFlagsArray+=(
"-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
)
'';

meta = with stdenv.lib; {
2 changes: 1 addition & 1 deletion pkgs/development/libraries/xmlrpc-c/default.nix
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
# <xmlrpc-c>/doc/COPYING also lists "Expat license",
# "ABYSS Web Server License" and "Python 1.5.2 License"
license = licenses.bsd3;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/p2p/libtorrent/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "http://rtorrent.net/downloads/";
description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";

platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ ebzzry codyopel ];
};
}