mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
25 lines
579 B
Nix
25 lines
579 B
Nix
{ stdenv, callPackage, CoreFoundation
|
|
, tiles ? true, Cocoa
|
|
, debug ? false
|
|
}:
|
|
|
|
let
|
|
inherit (callPackage ./common.nix { inherit tiles CoreFoundation Cocoa debug; }) common utils;
|
|
inherit (utils) fetchFromCleverRaven;
|
|
in
|
|
|
|
stdenv.mkDerivation (common // rec {
|
|
version = "0.E-2";
|
|
|
|
src = fetchFromCleverRaven {
|
|
rev = version;
|
|
sha256 = "15l6w6lxays7qmsv0ci2ry53asb9an9dh7l7fc13256k085qcg68";
|
|
};
|
|
|
|
patches = [ ./patches/fix_locale_dir.patch ];
|
|
|
|
meta = with stdenv.lib.maintainers; common.meta // {
|
|
maintainers = common.meta.maintainers ++ [ skeidel ];
|
|
};
|
|
})
|