libpwquality: factor out from gnome-control-center
This commit is contained in:
parent
1abd4b2264
commit
13f40aea33
@ -1,24 +1,13 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, gnome3, ibus, intltool, upower, libcanberra, accountservice
|
{ fetchurl, stdenv, pkgconfig, gnome3, ibus, intltool, upower, makeWrapper
|
||||||
, libxml2, polkit, libxslt, libgtop, libsoup, colord, colord-gtk, pulseaudio, fontconfig
|
, libcanberra, accountservice, libpwquality, pulseaudio, fontconfig
|
||||||
, cracklib, python, krb5, networkmanagerapplet, libwacom, samba, libnotify, libxkbfile
|
, libxml2, polkit, libxslt, libgtop, libsoup, colord, colord-gtk, libxkbfile
|
||||||
, shared_mime_info, tzdata, icu, libtool, docbook_xsl, docbook_xsl_ns, makeWrapper }:
|
, cracklib, python, krb5, networkmanagerapplet, libwacom, samba, libnotify
|
||||||
|
, shared_mime_info, tzdata, icu, libtool, docbook_xsl, docbook_xsl_ns }:
|
||||||
|
|
||||||
# http://ftp.gnome.org/pub/GNOME/teams/releng/3.10.2/gnome-suites-core-3.10.2.modules
|
# http://ftp.gnome.org/pub/GNOME/teams/releng/3.10.2/gnome-suites-core-3.10.2.modules
|
||||||
# TODO: bluetooth, networkmanager, wacom, smbclient, printers
|
# TODO: bluetooth, networkmanager, wacom, smbclient, printers
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
libpwquality = stdenv.mkDerivation rec {
|
|
||||||
name = "libpwquality-1.2.3";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://fedorahosted.org/releases/l/i/libpwquality/${name}.tar.bz2";
|
|
||||||
sha256 = "0sjiabvl5277nfxyy96jdz65a0a3pmkkwrfbziwgik83gg77j75i";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ cracklib python ];
|
|
||||||
};
|
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "gnome-control-center-3.10.2";
|
name = "gnome-control-center-3.10.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
12
pkgs/development/libraries/libpwquality/default.nix
Normal file
12
pkgs/development/libraries/libpwquality/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ stdenv, cracklib, fetchurl, python }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libpwquality-1.2.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://fedorahosted.org/releases/l/i/libpwquality/${name}.tar.bz2";
|
||||||
|
sha256 = "0sjiabvl5277nfxyy96jdz65a0a3pmkkwrfbziwgik83gg77j75i";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cracklib python ];
|
||||||
|
}
|
@ -5112,6 +5112,8 @@ let
|
|||||||
|
|
||||||
libpseudo = callPackage ../development/libraries/libpseudo { };
|
libpseudo = callPackage ../development/libraries/libpseudo { };
|
||||||
|
|
||||||
|
libpwquality = callPackage ../development/libraries/libpwquality { };
|
||||||
|
|
||||||
libqalculate = callPackage ../development/libraries/libqalculate { };
|
libqalculate = callPackage ../development/libraries/libqalculate { };
|
||||||
|
|
||||||
librsvg = callPackage ../development/libraries/librsvg {
|
librsvg = callPackage ../development/libraries/librsvg {
|
||||||
|
Loading…
Reference in New Issue
Block a user