Commit 3218a420 authored by Pol Dellaiera's avatar Pol Dellaiera
Browse files

doc: do not reuse `pname`

parent ac04a5c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ let
  version = "0.6.30";

  src = fetchurl {
    url = "https://github.com/nukeop/nuclear/releases/download/v${version}/${pname}-v${version}.AppImage";
    url = "https://github.com/nukeop/nuclear/releases/download/v${version}/nuclear-v${version}.AppImage";
    hash = "sha256-he1uGC1M/nFcKpMM9JKY4oeexJcnzV0ZRxhTjtJz6xw=";
  };
in
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ buildDartApplication rec {

  src = fetchFromGitHub {
    owner = "sass";
    repo = pname;
    repo = "dart-sass";
    tag = version;
    hash = "sha256-U6enz8yJcc4Wf8m54eYIAnVg/jsGi247Wy8lp1r1wg4=";
  };
+1 −1
Original line number Diff line number Diff line
@@ -204,7 +204,7 @@ buildNpmPackage (finalAttrs: {

  src = fetchFromGitHub {
    owner = "jesec";
    repo = pname;
    repo = "flood";
    tag = "v${finalAttrs.version}";
    hash = "sha256-BR+ZGkBBfd0dSQqAvujsbgsEPFYw/ThrylxUbOksYxM=";
  };
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ maven.buildMavenPackage rec {

  src = fetchFromGitHub {
    owner = "intoolswetrust";
    repo = pname;
    repo = "jd-cli";
    tag = "jd-cli-${version}";
    hash = "sha256-rRttA5H0A0c44loBzbKH7Waoted3IsOgxGCD2VM0U/Q=";
  };
+2 −2
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ buildDunePackage rec {

  src = fetchFromGitHub {
    owner = "inhabitedtype";
    repo = pname;
    repo = "angstrom";
    tag = version;
    hash = "sha256-MK8o+iPGANEhrrTc1Kz9LBilx2bDPQt7Pp5P2libucI=";
  };
@@ -124,7 +124,7 @@ buildDunePackage rec {
  minimalOCamlVersion = "4.02";

  src = fetchurl {
    url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
    url = "https://github.com/flowtype/ocaml-wtf8/releases/download/v${version}/wtf8-v${version}.tbz";
    hash = "sha256-d5/3KUBAWRj8tntr4RkJ74KWW7wvn/B/m1nx0npnzyc=";
  };

Loading