feat(nix/darwin/brew): Support variation
This commit is contained in:
parent
60964a91e2
commit
a5a3750cac
6 changed files with 14 additions and 55 deletions
|
@ -1,7 +1,7 @@
|
|||
# Modified version of brew-nix/casks.nix
|
||||
#
|
||||
# REF: https://github.com/BatteredBunny/brew-nix/blob/9dfab294afea5029922bbc59a10ae487c7318d59/casks.nix
|
||||
{ system, nixpkgs, brew-api, ... }:
|
||||
{ system, mac-version ? "ventura", nixpkgs, brew-api, ... }:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
|
@ -17,14 +17,16 @@ let
|
|||
getApp = cask: builtins.elemAt (getArtifacts cask).app 0;
|
||||
getArtifacts = cask: pkgs.lib.mergeAttrsList cask.artifacts;
|
||||
|
||||
getUrl = cask: (cask.variations.${mac-version} or cask).url;
|
||||
getHash = cask: (cask.variations.${mac-version} or cask).sha256;
|
||||
|
||||
caskToDerivation = cask: pkgs.stdenv.mkDerivation rec {
|
||||
pname = cask.token;
|
||||
version = cask.version;
|
||||
|
||||
# FIXME: support variants
|
||||
src = pkgs.fetchurl {
|
||||
url = cask.url;
|
||||
sha256 = pkgs.lib.optionalString (cask.sha256 != "no_check") cask.sha256;
|
||||
url = (getUrl cask);
|
||||
sha256 = pkgs.lib.optionalString ((getHash cask) != "no_check") (getHash cask);
|
||||
};
|
||||
|
||||
nativeBuildInputs = with pkgs; [
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
# REF: https://github.com/bandithedoge/nixpkgs-firefox-darwin/blob/ceaca2359e5371ccef3f92a36baf7c438b354afb/overlay.nix
|
||||
final: prev:
|
||||
|
||||
let
|
||||
inkscapePackage = version:
|
||||
final.stdenv.mkDerivation rec {
|
||||
pname = "Inkscape";
|
||||
inherit version;
|
||||
|
||||
buildInputs = [ final.pkgs.undmg ];
|
||||
sourceRoot = ".";
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/Applications
|
||||
cp -r Inkscape*.app "$out/Applications/"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
src = final.fetchurl {
|
||||
name = "Inkscape-${version}.dmg";
|
||||
url = "https://media.inkscape.org/dl/resources/file/Inkscape-${version}_${if final.stdenv.isAarch64 then "arm64" else "x86_64"}.dmg";
|
||||
sha256 = if final.stdenv.isAarch64 then "c2d89809ad8d85021e7784e72e28aee2231b0b8675ec3ede3e6fb9f1ffedb4b3" else "e3f968e131e5c3577ee21809da487eafe2a9b42370e2bf408e5811b6f965912e";
|
||||
};
|
||||
|
||||
meta = with final.lib; {
|
||||
description = "Vector graphics editor";
|
||||
homepage = "https://www.inkscape.org";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.jtojnar ];
|
||||
platforms = platforms.all;
|
||||
mainProgram = "inkscape";
|
||||
longDescription = ''
|
||||
Inkscape is a feature-rich vector graphics editor that edits
|
||||
files in the W3C SVG (Scalable Vector Graphics) file format.
|
||||
|
||||
If you want to import .eps files install ps2edit.
|
||||
'';
|
||||
};
|
||||
};
|
||||
in {
|
||||
inkscape-bin = inkscapePackage "1.4.028868";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue