Merge pull request #112958 from r-ryantm/auto-update/owl-lisp

owl-lisp: 0.1.23 -> 0.2
master
Mario Rodas 2021-02-12 23:42:24 -05:00 committed by GitHub
commit 4dfe627bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 8 deletions

View File

@ -1,22 +1,19 @@
{ lib, stdenv, fetchFromGitLab, coreutils, which }:
{ lib, stdenv, fetchFromGitLab, which }:
stdenv.mkDerivation rec {
pname = "owl-lisp";
version = "0.1.23";
version = "0.2";
src = fetchFromGitLab {
owner = "owl-lisp";
repo = "owl";
rev = "v${version}";
sha256 = "1indcbicqcdlk9sinkdyhk50fi1b4cb7yrr14vr874gjzmwr2l3i";
sha256 = "sha256-G12yZxlq6Hss5j4Seq1hcPQWXMIeL2Z8VkBdmIGESX8=";
};
nativeBuildInputs = [ which ];
prePatch = ''
substituteInPlace Makefile \
--replace /usr $out
'';
makeFlags = [ "PREFIX=${placeholder "out"}" "CC=cc" ];
# tests are run as part of the compilation process
doCheck = false;
@ -26,6 +23,6 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.com/owl-lisp/owl";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}