treewide: name -> pname

This commit is contained in:
volth
2019-08-13 21:52:01 +00:00
parent fe9a3e3e63
commit c814d72b51
520 changed files with 1164 additions and 622 deletions

View File

@@ -5,7 +5,8 @@ let
in
stdenv.mkDerivation {
name = "es-${version}";
pname = "es";
inherit version;
src = fetchurl {
url = "https://github.com/wryun/es-shell/releases/download/v${version}/es-${version}.tar.gz";

View File

@@ -3,7 +3,8 @@ let
version = "0.6.0";
in
stdenv.mkDerivation {
name = "oil-${version}";
pname = "oil";
inherit version;
src = fetchurl {
url = "https://www.oilshell.org/download/oil-${version}.tar.xz";

View File

@@ -10,7 +10,8 @@ let
in
stdenv.mkDerivation {
name = "zsh-${version}";
pname = "zsh";
inherit version;
src = fetchurl {
url = "mirror://sourceforge/zsh/zsh-${version}.tar.xz";

View File

@@ -5,7 +5,8 @@ let
in
stdenv.mkDerivation rec {
name = "nix-zsh-completions-${version}";
pname = "nix-zsh-completions";
inherit version;
src = fetchFromGitHub {
owner = "spwhitt";