4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchFromGitHub, zlib, boost }:
|
|
|
|
let
|
|
glucose' = fetchurl {
|
|
url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz";
|
|
sha256 = "0bq5l2jabhdfhng002qfk0mcj4pfi1v5853x3c7igwfrgx0jmfld";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "aspino-unstable-2017-03-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alviano";
|
|
repo = "aspino";
|
|
rev = "e31c3b4e5791a454e6602439cb26bd98d23c4e78";
|
|
sha256 = "0annsjs2prqmv1lbs0lxr7yclfzh47xg9zyiq6mdxcc02rxsi14f";
|
|
};
|
|
|
|
buildInputs = [ zlib boost ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "GCC = g++" "GCC = c++"
|
|
|
|
patchShebangs .
|
|
'';
|
|
|
|
preBuild = ''
|
|
cp ${glucose'} patches/glucose-syrup.tgz
|
|
./bootstrap.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
install -m0755 build/release/{aspino,fairino-{bs,ls,ps},maxino-2015-{k16,kdyn}} $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "SAT/PseudoBoolean/MaxSat/ASP solver using glucose";
|
|
maintainers = with maintainers; [ gebner ];
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
homepage = "https://alviano.net/software/maxino/";
|
|
# See pkgs/applications/science/logic/glucose/default.nix
|
|
badPlatforms = [ "aarch64-linux" ];
|
|
};
|
|
}
|