mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
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
36 lines
961 B
Nix
36 lines
961 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
_name = "muscle";
|
|
name = "${_name}-${version}";
|
|
version = "3.8.31";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.drive5.com/muscle/downloads${version}/${_name}${version}_src.tar.gz";
|
|
sha256 = "1b89z0x7h098g99g00nqadgjnb2r5wpi9s11b7ddffqkh9m9dia3";
|
|
};
|
|
|
|
patches = [
|
|
./muscle-3.8.31-no-static.patch
|
|
];
|
|
|
|
preBuild = ''
|
|
cd ./src/
|
|
patchShebangs mk
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -vD muscle $out/bin/muscle
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A multiple sequence alignment method with reduced time and space complexity";
|
|
license = licenses.publicDomain;
|
|
homepage = "https://www.drive5.com/muscle/";
|
|
maintainers = [ maintainers.unode ];
|
|
# NOTE: Supposed to be compatible with darwin/intel & PPC but currently fails.
|
|
# Anyone with access to these platforms is welcome to give it a try
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|