Created
January 29, 2013 10:08
-
-
Save l3talka/4663196 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl }: | |
stdenv.mkDerivation rec { | |
name = "hello-2.8"; | |
src = fetchurl { | |
url = "mirror://gnu/hello/${name}.tar.gz"; | |
sha256 = "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"; | |
}; | |
doCheck = true; | |
meta = { | |
description = "A program that produces a familiar, friendly greeting"; | |
longDescription = '' | |
GNU Hello is a program that prints "Hello, world!" when you run it. | |
It is fully customizable. | |
''; | |
homepage = http://www.gnu.org/software/hello/manual/; | |
license = "GPLv3+"; | |
maintainers = [ stdenv.lib.maintainers.ludo ]; | |
platforms = stdenv.lib.platforms.all; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment