mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
30 lines
893 B
Nix
30 lines
893 B
Nix
{ stdenv, fetchurl, zlib }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "glucose";
|
|
version = "4.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup-${version}.tgz";
|
|
sha256 = "0aahrkaq7n0z986fpqz66yz946nxardfi6dh8calzcfjpvqiraji";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
sourceRoot = "glucose-syrup-${version}/simp";
|
|
makeFlags = [ "r" ];
|
|
installPhase = ''
|
|
install -Dm0755 glucose_release $out/bin/glucose
|
|
mkdir -p "$out/share/doc/${pname}-${version}/"
|
|
install -Dm0755 ../{LICEN?E,README*,Changelog*} "$out/share/doc/${pname}-${version}/"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Modern, parallel SAT solver (sequential version)";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ gebner ];
|
|
# Build uses _FPU_EXTENDED macro
|
|
badPlatforms = [ "aarch64-linux" ];
|
|
};
|
|
}
|