Unverified Commit 02f33afe authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

kakoune-cr: fix build and drop dependency on crystal 1.2 (#381592)

parents e573b086 fe7fdde1
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ let
in
crystal.buildCrystalPackage rec {
  pname = "kakoune.cr";
  version = "unstable-2021-11-12";
  version = "0-unstable-2021-11-12";

  src = fetchFromGitHub {
    owner = "alexherbo2";
@@ -47,14 +47,16 @@ crystal.buildCrystalPackage rec {
    $out/bin/kcr --help
  '';

  meta = with lib; {
  dontCheckForBrokenSymlinks = true;

  meta = {
    homepage = "https://github.com/alexherbo2/kakoune.cr";
    description = "Command-line tool for Kakoune";
    license = licenses.unlicense;
    maintainers = with maintainers; [
    license = lib.licenses.unlicense;
    maintainers = with lib.maintainers; [
      philiptaron
      malte-v
    ];
    platforms = platforms.unix;
    platforms = lib.platforms.unix;
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -3819,8 +3819,6 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
  };
  kakoune-cr = callPackage ../tools/misc/kakoune-cr { crystal = crystal_1_2; };
  kbs2 = callPackage ../tools/security/kbs2 {
    inherit (darwin.apple_sdk.frameworks) AppKit SystemConfiguration;
  };