pkgs/development: rename name to pname&version

This commit is contained in:
Felix Buehler
2021-11-30 21:32:28 +01:00
parent 3ccc568631
commit 7678aa30b4
50 changed files with 191 additions and 129 deletions
@@ -1,10 +1,11 @@
{lib, stdenv, fetchurl}:
stdenv.mkDerivation {
name = "commons-bsf-1.2";
stdenv.mkDerivation rec {
pname = "commons-bsf";
version = "2.4.0";
src = fetchurl {
url = "mirror://apache/commons/bsf/binaries/bsf-bin-2.4.0.tar.gz";
url = "mirror://apache/commons/bsf/binaries/bsf-bin-${version}.tar.gz";
sha256 = "1my3hv4y8cvrd1kr315wvbjqsamzlzswnbqcmsa2m4hqcafddfr8";
};
@@ -1,10 +1,11 @@
{lib, stdenv, fetchurl}:
stdenv.mkDerivation {
name = "commons-logging-1.2";
stdenv.mkDerivation rec {
pname = "commons-logging";
version = "1.2";
src = fetchurl {
url = "mirror://apache/commons/logging/binaries/commons-logging-1.2-bin.tar.gz";
url = "mirror://apache/commons/logging/binaries/commons-logging-${version}-bin.tar.gz";
sha256 = "1gc70pmcv0x6ibl89jglmr22f8zpr63iaifi49nrq399qw2qhx9z";
};