pkgs/development: rename name to pname&version
This commit is contained in:
@@ -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";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user