mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
bf71f12cb5
Each time src/translations.cpp is modified, we have to update the locale patch. Using sed to patch dynamically should be handy.
23 lines
530 B
Nix
23 lines
530 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";
|
|
};
|
|
|
|
meta = with stdenv.lib.maintainers; common.meta // {
|
|
maintainers = common.meta.maintainers ++ [ skeidel ];
|
|
};
|
|
})
|