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: 3a26a1fe9423
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a41b38eb266a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 31, 2019

  1. urweb: 20180616 -> 20190217

    yrashk authored and thoughtpolice committed May 31, 2019
    Copy the full SHA
    a41b38e View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/compilers/urweb/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/compilers/urweb/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, file, openssl, mlton
, mysql, postgresql, sqlite, gcc
, mysql, postgresql, sqlite, gcc, icu
}:

stdenv.mkDerivation rec {
name = "urweb-${version}";
version = "20180616";
version = "20190217";

src = fetchurl {
url = "https://github.com/urweb/urweb/releases/download/${version}/${name}.tar.gz";
sha256 = "04iy2ky78q6w0d2xyfz2a1k26g2yrwsh1hw1bgs5ia9v3ih965r1";
sha256 = "1cl0x0sy7w1lazszc8q06q3wx0x0rczxh27vimrsw54s6s9y096s";
};

buildInputs = [ openssl mlton mysql.connector-c postgresql sqlite ];
buildInputs = [ openssl mlton mysql.connector-c postgresql sqlite icu ];

prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure