Unverified Commit 7044c159 authored by Yifei Sun's avatar Yifei Sun Committed by GitHub
Browse files

ocamlPackages.{color,cpu,cpuid,dssi}: small cleaning (#463101)

parents e51de18b 4cdabf3e
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -5,26 +5,23 @@
  gg,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "color";
  version = "0.2.0";

  useDune2 = true;
  minimalOCamlVersion = "4.05";

  src = fetchurl {
    url = "https://github.com/anuragsoni/color/releases/download/${version}/color-${version}.tbz";
    sha256 = "0wg3a36i1a7fnz5pf57qzbdghwr6dzp7nnxyrz9m9765lxsn65ph";
    url = "https://github.com/anuragsoni/color/releases/download/${finalAttrs.version}/color-${finalAttrs.version}.tbz";
    hash = "sha256-8BZjdafFnFTTz75be+5vJnP42vr4FHfLt+6oEM1Q43E=";
  };

  propagatedBuildInputs = [
    gg
  ];

  meta = with lib; {
  meta = {
    description = "Converts between different color formats";
    license = licenses.mit;
    maintainers = with maintainers; [ fgaz ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fgaz ];
    homepage = "https://github.com/anuragsoni/color";
  };
}
})
+9 −11
Original line number Diff line number Diff line
@@ -6,17 +6,15 @@
  autoconf,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "cpu";
  version = "2.0.0";

  useDune2 = true;

  src = fetchFromGitHub {
    owner = "UnixJunkie";
    repo = pname;
    rev = "v${version}";
    sha256 = "1vir6gh1bhvxgj2fcn69c38yhw3jgk7dyikmw789m5ld2csnyjiv";
    repo = "cpu";
    tag = "v${finalAttrs.version}";
    hash = "sha256-O0pvNRONlprQ4XVG3858cnDo0WDJWOaEfH3DFeAzOe4=";
  };

  preConfigure = ''
@@ -28,10 +26,10 @@ buildDunePackage rec {

  hardeningDisable = lib.optional stdenv.hostPlatform.isDarwin "strictoverflow";

  meta = with lib; {
    inherit (src.meta) homepage;
  meta = {
    homepage = "https://github.com/UnixJunkie/cpu";
    description = "Core pinning library";
    maintainers = [ maintainers.bcdarwin ];
    license = licenses.lgpl2;
    maintainers = [ lib.maintainers.bcdarwin ];
    license = lib.licenses.lgpl2;
  };
}
})
+4 −8
Original line number Diff line number Diff line
@@ -4,17 +4,13 @@
  buildDunePackage,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "cpuid";
  version = "0.1.2";

  useDune2 = true;

  minimalOCamlVersion = "4.03";

  src = fetchurl {
    url = "https://github.com/pqwy/cpuid/releases/download/v${version}/cpuid-v${version}.tbz";
    sha256 = "08ng4mva6qblb5ipkrxbr0my7ndkc4qwcbswkqgbgir864s74m93";
    url = "https://github.com/pqwy/cpuid/releases/download/v${finalAttrs.version}/cpuid-v${finalAttrs.version}.tbz";
    hash = "sha256-I1VyNDEox7cenlwvxjFhs9njK8ir53ljWXRho3YlzyI=";
  };

  meta = {
@@ -23,4 +19,4 @@ buildDunePackage rec {
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };
}
})
+7 −9
Original line number Diff line number Diff line
@@ -7,17 +7,15 @@
  alsa-lib,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "dssi";
  version = "0.1.5";

  useDune2 = true;

  src = fetchFromGitHub {
    owner = "savonet";
    repo = "ocaml-dssi";
    rev = "v${version}";
    sha256 = "1frbmx1aznwp60r6bkx1whqyr6mkflvd9ysmjg7s7b80mh0s4ix6";
    tag = "v${finalAttrs.version}";
    hash = "sha256-pkeiAawAraPPk1X71DZ1s5rsMeShz2UyMJfbr0KvK7s=";
  };

  buildInputs = [ dune-configurator ];
@@ -26,10 +24,10 @@ buildDunePackage rec {
    alsa-lib
  ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/savonet/ocaml-dssi";
    description = "Bindings for the DSSI API which provides audio synthesizers";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ dandellion ];
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ dandellion ];
  };
}
})