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: 1aa5dc968f8f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 20a331a714c0
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 25, 2019

  1. libedit: 20180525 -> 20181209

    dtzWill committed Mar 25, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    zimbatm Jonas Chevalier
    Copy the full SHA
    f23c89a View commit details
  2. libedit: 20181209 -> 20190324

    dtzWill committed Mar 25, 2019
    Copy the full SHA
    784a506 View commit details
  3. Copy the full SHA
    c955150 View commit details

Commits on Mar 27, 2019

  1. Merge pull request #58234 from dtzWill/update/libedit-20190324

    libedit: 20180525 -> 20190324
    dtzWill authored Mar 27, 2019
    Copy the full SHA
    20a331a View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/development/libraries/libedit/default.nix
9 changes: 4 additions & 5 deletions pkgs/development/libraries/libedit/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
name = "libedit-20180525-3.1";
pname = "libedit";
version = "20190324-3.1";

src = fetchurl {
url = "https://thrysoee.dk/editline/${name}.tar.gz";
sha256 = "05iicng4kag5hxdc7adbyj1gm3qbmvcc33m9cyx5gys0s67yl6y4";
url = "https://thrysoee.dk/editline/${pname}-${version}.tar.gz";
sha256 = "1bhvp8xkkgrg89k4ci1k8vjl3nhb6szd4ghy9lp4jrfgq58hz3xc";
};

outputs = [ "out" "dev" ];
@@ -17,8 +18,6 @@ stdenv.mkDerivation rec {

propagatedBuildInputs = [ ncurses ];

configureFlags = [ "--enable-widec" ];

postInstall = ''
find $out/lib -type f | grep '\.\(la\|pc\)''$' | xargs sed -i \
-e 's,-lncurses[a-z]*,-L${ncurses.out}/lib -lncursesw,g'