pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl} :
|
||||
{lib, stdenv, fetchurl} :
|
||||
|
||||
# This package requires a locale ru_RU.cp1251 locale entry.
|
||||
# Waiting for a better idea, I created it modifying a store file using:
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran data english-russian";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl} :
|
||||
{lib, stdenv, fetchurl} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libbtree-0.0.1alpha2";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran lib: library for reading Multitran's BTREE database format";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{ stdenv, fetchurl, libmtsupport }:
|
||||
{ lib, stdenv, fetchurl, libmtsupport }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libfacet-0.0.1alpha2";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/multitran/libfacet-0.0.1alpha2.tar.bz2";
|
||||
sha256 = "dc53351c4035a3c27dc6c1d0410e808346fbc107e7e7c112ec65c59d0df7a144";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran lib: enchanced locale facets";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, libmtsupport, libfacet, libbtree, multitrandata } :
|
||||
{lib, stdenv, fetchurl, libmtsupport, libfacet, libbtree, multitrandata } :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libmtquery-0.0.1alpha3";
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran lib: main engine to query translations";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl} :
|
||||
{lib, stdenv, fetchurl} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libmtsupport-0.0.1alpha2";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran lib: basic useful functions";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, libmtsupport, libfacet, libbtree, libmtquery, help2man} :
|
||||
{lib, stdenv, fetchurl, libmtsupport, libfacet, libbtree, libmtquery, help2man} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mt-utils-0.0.1alpha3";
|
||||
@@ -25,8 +25,8 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://multitran.sourceforge.net/";
|
||||
description = "Multitran: simple command line utilities for dictionary maintenance";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = with lib.maintainers; [viric];
|
||||
platforms = with lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user