1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

elmPackages: mark release.nix as autogenerated

This commit is contained in:
Nikolay Amiantov 2016-05-30 02:11:26 +03:00
parent e645389834
commit 76bf59a231
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,8 @@
# This file is auto-generated by ./update-elm.rb.
# Please, do not modify it by hand!
{ callPackage }:
{
version = "0.17.0";
version = "0.17";
packages = {
elm-compiler = callPackage ./elm-compiler.nix { };
elm-package = callPackage ./elm-package.nix { };

View file

@ -14,6 +14,8 @@ for pkg, ver in $elm_packages
end
File.open("release.nix", 'w') do |file|
file.puts "# This file is auto-generated by ./update-elm.rb."
file.puts "# Please, do not modify it by hand!"
file.puts "{ callPackage }:"
file.puts "{"
file.puts " version = \"#{$elm_version}\";"