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

Commits on Aug 21, 2019

  1. owl-lisp: 0.1.16 -> 0.1.19

    peterhoeg committed Aug 21, 2019
    Copy the full SHA
    abb41a1 View commit details

Commits on Aug 26, 2019

  1. Merge pull request #67028 from peterhoeg/u/owl

    owl-lisp: 0.1.16 -> 0.1.19
    peterhoeg authored Aug 26, 2019
    Copy the full SHA
    3de05cd View commit details
Showing with 12 additions and 14 deletions.
  1. +12 −14 pkgs/development/compilers/owl-lisp/default.nix
26 changes: 12 additions & 14 deletions pkgs/development/compilers/owl-lisp/default.nix
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
{ stdenv, fetchFromGitHub, coreutils, which }:
{ stdenv, fetchFromGitLab, coreutils, which }:

stdenv.mkDerivation rec {
name = "owl-lisp-${version}";
version = "0.1.16";
pname = "owl-lisp";
version = "0.1.19";

src = fetchFromGitHub {
owner = "aoh";
repo = "owl-lisp";
src = fetchFromGitLab {
owner = "owl-lisp";
repo = "owl";
rev = "v${version}";
sha256 = "1qp6p48bmlyn83rqi6k3d098dg4cribavg5rd4x17z37i181vxvj";
sha256 = "1bgjd2gkr5risfcc401rlr5fc82gwm4r2gpp9gzkg9h64acivkjx";
};

nativeBuildInputs = [ which ];

prePatch = ''
substituteInPlace Makefile --replace /usr $out
for f in tests/run tests/exec.sh ; do
substituteInPlace $f --replace /bin/echo ${coreutils}/bin/echo
done
substituteInPlace Makefile \
--replace /usr $out
'';

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

meta = with stdenv.lib; {
description = "A functional lisp";
homepage = https://github.com/aoh/owl-lisp;
description = "A functional Scheme for world domination";
homepage = "https://gitlab.com/owl-lisp/owl";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}