forked from mirrors/nixpkgs
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
28 lines
614 B
Nix
28 lines
614 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mie-unstable-${version}";
|
|
version = "2016-05-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "herumi";
|
|
repo = "mie";
|
|
rev = "704b625b7770a8e1eab26ac65d1fed14c2fcf090";
|
|
sha256 = "144bpmgfs2m4qqv7a2mccgi1aq5jmlr25gnk78ryq09z8cyv88y2";
|
|
};
|
|
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r include $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/herumi/mie;
|
|
maintainers = with maintainers; [ rht ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|