summary refs log blame commit diff
path: root/pkgs/development/libraries/popt/default.nix
blob: 1170760c828bef3699d87e859ad1a320166f25ea (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                            
                       
 
                     
                    
                  
                                                            

                                             
                          
 
{stdenv, fetchurl, gettext}:

assert gettext != null;

stdenv.mkDerivation {
  name = "popt-1.7";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/popt-1.7.tar.gz;
    md5 = "5988e7aeb0ae4dac8d83561265984cc9";
  };
  buildInputs = [gettext];
}