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

owl-lisp: 0.1.23 -> 0.2
This commit is contained in:
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

View File

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