7c7f9b63ad
svn path=/nixpkgs/trunk/; revision=19514
23 lines
587 B
Nix
23 lines
587 B
Nix
{ stdenv, fetchurl, bison, flex, autoconf, automake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kbd-1.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.altlinux.org/pub/people/legion/kbd/${name}.tar.gz";
|
|
sha256 = "1klrxas8vjikx6jm6m2lcpmn88lhxb6p3whwgdwq9d9flf1qrf4i";
|
|
};
|
|
|
|
buildInputs = [ bison flex autoconf automake ];
|
|
|
|
# Grrr, kbd 1.15.1 doesn't include a configure script.
|
|
preConfigure = "autoreconf";
|
|
|
|
makeFlags = "setowner= ";
|
|
|
|
meta = {
|
|
homepage = ftp://ftp.altlinux.org/pub/people/legion/kbd/;
|
|
description = "Linux keyboard utilities and keyboard maps";
|
|
};
|
|
}
|