uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
46
pkgs/data/fonts/libre-caslon/default.nix
Normal file
46
pkgs/data/fonts/libre-caslon/default.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libre-caslon";
|
||||
version = "1.002";
|
||||
|
||||
srcs = [
|
||||
(fetchFromGitHub {
|
||||
owner = "impallari";
|
||||
repo = "Libre-Caslon-Text";
|
||||
rev = "c31e21f7e8cf91f18d90f778ce20e66c68219c74";
|
||||
name = "libre-caslon-text-${version}-src";
|
||||
sha256 = "0zczv9qm8cgc7w1p64mnf0p0fi7xv89zhf1zzf1qcna15kbgc705";
|
||||
})
|
||||
|
||||
(fetchFromGitHub {
|
||||
owner = "impallari";
|
||||
repo = "Libre-Caslon-Display";
|
||||
rev = "3491f6a9cfde2bc15e736463b0bc7d93054d5da1";
|
||||
name = "libre-caslon-display-${version}-src";
|
||||
sha256 = "12jrny3y8w8z61lyw470drnhliji5b24lgxap4w3brp6z3xjph95";
|
||||
})
|
||||
];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/opentype
|
||||
mkdir -p $out/share/doc/${pname}-${version}
|
||||
cp -v "libre-caslon-text-${version}-src/fonts/OTF/"*.otf $out/share/fonts/opentype/
|
||||
cp -v "libre-caslon-display-${version}-src/fonts/OTF/"*.otf $out/share/fonts/opentype/
|
||||
cp -v libre-caslon-text-${version}-src/README.md libre-caslon-text-${version}-src/FONTLOG.txt $out/share/doc/${pname}-${version}
|
||||
'';
|
||||
|
||||
outputHashAlgo = "sha256";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = "05aajwny99yqzn1nnq1blx6h7rl54x056y12hyawfbigkzxhscns";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Caslon fonts based on hand-lettered American Caslons of 1960s";
|
||||
homepage = "http://www.impallari.com/librecaslon";
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ cmfwyp ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue