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

Commits on May 10, 2018

  1. owl-lisp: 0.1.14 -> 0.1.15

    peterhoeg committed May 10, 2018

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    468841c View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/development/compilers/owl-lisp/default.nix
10 changes: 6 additions & 4 deletions pkgs/development/compilers/owl-lisp/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{ stdenv, fetchFromGitHub, coreutils }:
{ stdenv, fetchFromGitHub, coreutils, which }:

stdenv.mkDerivation rec {
name = "owl-lisp-${version}";
version = "0.1.14";
version = "0.1.15";

src = fetchFromGitHub {
owner = "aoh";
repo = "owl-lisp";
rev = "v${version}";
sha256 = "1rr0icprna3zs834q1pj4xy21cql3pcfknfkqipq01rhnl2893sz";
sha256 = "0pczmra2x6icyz6b6g66pp5ij83cq4wszg0ssw8qm7a5314kxkq4";
};

nativeBuildInputs = [ which ];

prePatch = ''
substituteInPlace Makefile --replace /usr $out
@@ -19,7 +21,7 @@ stdenv.mkDerivation rec {
done
'';

# tests are already run as part of the compilation process
# tests are run as part of the compilation process
doCheck = false;

meta = with stdenv.lib; {